interface ServerRequestCreatorInterface
@author Tobias Nyholm <tobias.nyholm@gmail.com> @author Martijn van der Ven <martijn@vanderven.se>
Hierarchy
- interface \Nyholm\Psr7Server\ServerRequestCreatorInterface
Expanded class hierarchy of ServerRequestCreatorInterface
All classes that implement ServerRequestCreatorInterface
File
-
vendor/
nyholm/ psr7-server/ src/ ServerRequestCreatorInterface.php, line 14
Namespace
Nyholm\Psr7ServerView source
interface ServerRequestCreatorInterface {
/**
* Create a new server request from the current environment variables.
* Defaults to a GET request to minimise the risk of an \InvalidArgumentException.
* Includes the current request headers as supplied by the server through `getallheaders()`.
* If `getallheaders()` is unavailable on the current server it will fallback to its own `getHeadersFromServer()` method.
* Defaults to php://input for the request body.
*
* @throws \InvalidArgumentException if no valid method or URI can be determined
*/
public function fromGlobals() : ServerRequestInterface;
/**
* Create a new server request from a set of arrays.
*
* @param array $server typically $_SERVER or similar structure
* @param array $headers typically the output of getallheaders() or similar structure
* @param array $cookie typically $_COOKIE or similar structure
* @param array $get typically $_GET or similar structure
* @param array|null $post typically $_POST or similar structure, represents parsed request body
* @param array $files typically $_FILES or similar structure
* @param StreamInterface|resource|string|null $body Typically stdIn
*
* @throws \InvalidArgumentException if no valid method or URI can be determined
*/
public function fromArrays(array $server, array $headers = [], array $cookie = [], array $get = [], ?array $post = null, array $files = [], $body = null) : ServerRequestInterface;
/**
* Get parsed headers from ($_SERVER) array.
*
* @param array $server typically $_SERVER or similar structure
*/
public static function getHeadersFromServer(array $server) : array;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
ServerRequestCreatorInterface::fromArrays | public | function | Create a new server request from a set of arrays. | 1 |
ServerRequestCreatorInterface::fromGlobals | public | function | Create a new server request from the current environment variables. Defaults to a GET request to minimise the risk of an \InvalidArgumentException. Includes the current request headers as supplied by the server through `getallheaders()`. If… |
1 |
ServerRequestCreatorInterface::getHeadersFromServer | public static | function | Get parsed headers from ($_SERVER) array. | 1 |