Http\Request->$get

最后更新于:2022-04-02 06:33:10

# Http\\Request->$get `Http`请求的`GET`参数,相当于`PHP`中的`$_GET`,格式为数组。 ~~~ // 如:index.php?hello=123 echo $request->get['hello']; // 获取所有GET参数 var_dump($request->get); ~~~ > 为防止HASH攻击,GET参数最大不允许超过128个
';