LoginSignup
0
0

More than 1 year has passed since last update.

PHPリクエスト メモ

Posted at

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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0