PHP请求备忘录
PHP请求备忘录
请求对象具有几个属性对象。
其中的一些是复制了PHP的超级全局变量。
$request->cookies for $_COOKIES
$request->env for $_ENV
$request->files for $_FILES
$request->post for $_POST
$request->query for $_GET
$request->server for $_SERVER
//その他のプロパティオブジェクトは、リクエストに特有の情報を表します。
$request->client for the client making the request
$request->content for the raw body of the request
$request->headers for the request headers
$request->method for the request method
$request->accept for content negotiation
$request->params for path-info parameters
$request->url for the request URL