X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http%2FEnv%2FRequest.md;h=6aef6c795289132d556dd86166b9e4af6f6c1996;hb=280e2cd3c237e14c6b8659cd4e7c604dbe5e9ec6;hp=5c4b32f271f71329220ed20313f73932ad018b1f;hpb=7823a35136269030a351b68b8ae8ee5026696aea;p=mdref%2Fmdref-http diff --git a/http/Env/Request.md b/http/Env/Request.md index 5c4b32f..6aef6c7 100644 --- a/http/Env/Request.md +++ b/http/Env/Request.md @@ -1,14 +1,26 @@ # class http\Env\Request extends http\Message +The http\Env\Request class' instances represent the server's current HTTP request. + +See http\Message for inherited members. + +## Changelog: + +Version | Changes +--------|-------- +2.2.0 | Added http\Env\Request::getCookie() and http\Env\Request::$cookie. + ## Constants: -> None. +None. ## Properties: -* ```protected $query = NULL``` +* protected http\QueryString $query = NULL The request's query parameters. ($_GET) -* ```protected $form = NULL``` +* protected http\QueryString $form = NULL The request's form parameters. ($_POST) -* ```protected $files = NULL``` +* protected array $files = NULL The request's form uploads. ($_FILES) +* protected array $cookie = NULL + The request's cookies. ($_COOKIE)