Class Request
An HTTP request.
<?php use ICanBoogie\HTTP\Request; # Creating the main request $request = Request::from($_SERVER); # Creating a request from scratch, with the current environment. $request = Request::from([ 'uri' => '/path/to/my/page.html?page=2', 'user_agent' => 'Mozilla' 'is_get' => true, 'is_xhr' => true, 'is_local' => true ], $_SERVER);
- ICanBoogie\HTTP\Request implements ArrayAccess, IteratorAggregate uses ICanBoogie\Accessor\AccessorTrait (not available)
Namespace: ICanBoogie\HTTP
See: http://en.wikipedia.org/wiki/Uniform_resource_locator
Located at Request.php
See: http://en.wikipedia.org/wiki/Uniform_resource_locator
Located at Request.php
Methods summary
Magic methods summary
Constants summary
Properties summary
public static
$methods
: array
[ self::METHOD_CONNECT, self::METHOD_DELETE, self::METHOD_GET, self::METHOD_HEAD, self::METHOD_OPTIONS, self::METHOD_POST, self::METHOD_PUT, self::METHOD_PATCH, self::METHOD_TRACE ]