获取参数

获取指定参数

控制器中获取用户输入数据

/**
 * 默认方法
 *
 * @cp_api post, /hello, hello
 * @cp_request t|时间|1
 * @throws
 */
function index()
{
    $t = $this->input('t')->val();
    $this->json(1, [
        't' => $t
    ]);
}

获取输入参数,$this->input()返回一个DataFilter对象, 默认使用过滤val()过滤HTML标签,其他过滤方法

多参数

多个参数使用逗号分隔,支持换行

/**
 * 默认方法
 *
 * @cp_api post, /hello, hello
 * @cp_request a|a|1, b|b|1
 * @cp_request c|c|1
 * @throws
 */
function index()
{
    $t = $this->input('t')->val();
    $this->json(1, [
        't' => $t
    ]);
}