ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ServerRequestInterface.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Psr\Http\Message;
4 
44 {
54  public function getServerParams();
55 
66  public function getCookieParams();
67 
85  public function withCookieParams(array $cookies);
86 
99  public function getQueryParams();
100 
123  public function withQueryParams(array $query);
124 
137  public function getUploadedFiles();
138 
150  public function withUploadedFiles(array $uploadedFiles);
151 
167  public function getParsedBody();
168 
197  public function withParsedBody($data);
198 
210  public function getAttributes();
211 
227  public function getAttribute($name, $default = null);
228 
244  public function withAttribute($name, $value);
245 
260  public function withoutAttribute($name);
261 }
getServerParams()
Retrieve server parameters.
getQueryParams()
Retrieve query string arguments.
Representation of an incoming, server-side HTTP request.
withParsedBody($data)
Return an instance with the specified body parameters.
if($format !==null) $name
Definition: metadata.php:146
getParsedBody()
Retrieve any parameters provided in the request body.
getAttributes()
Retrieve attributes derived from the request.
withUploadedFiles(array $uploadedFiles)
Create a new instance with the specified uploaded files.
withQueryParams(array $query)
Return an instance with the specified query string arguments.
withCookieParams(array $cookies)
Return an instance with the specified cookies.
getUploadedFiles()
Retrieve normalized file upload data.
withAttribute($name, $value)
Return an instance with the specified derived request attribute.
$query
Create styles array
The data for the language used.
getAttribute($name, $default=null)
Retrieve a single derived request attribute.
Representation of an outgoing, client-side request.
withoutAttribute($name)
Return an instance that removes the specified derived request attribute.