ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
functions.php File Reference

Go to the source code of this file.

Namespaces

 GuzzleHttp\Psr7
 

Functions

 GuzzleHttp\Psr7::str (MessageInterface $message)
 Returns the string representation of an HTTP message. More...
 
 GuzzleHttp\Psr7::uri_for ($uri)
 Returns a UriInterface for the given value. More...
 
 GuzzleHttp\Psr7::stream_for ($resource='', array $options=[])
 Create a new stream based on the input type. More...
 
 GuzzleHttp\Psr7::parse_header ($header)
 Parse an array of header values containing ";" separated data into an array of associative arrays representing the header key value pair data of the header. More...
 
 GuzzleHttp\Psr7::normalize_header ($header)
 Converts an array of header values that may contain comma separated headers into an array of headers with no comma separated values. More...
 
 GuzzleHttp\Psr7::modify_request (RequestInterface $request, array $changes)
 Clone and modify a request with the given changes. More...
 
 GuzzleHttp\Psr7::rewind_body (MessageInterface $message)
 Attempts to rewind a message body and throws an exception on failure. More...
 
 GuzzleHttp\Psr7::copy_to_string (StreamInterface $stream, $maxLen=-1)
 Copy the contents of a stream into a string until the given number of bytes have been read. More...
 
 GuzzleHttp\Psr7::copy_to_stream (StreamInterface $source, StreamInterface $dest, $maxLen=-1)
 Copy the contents of a stream into another stream until the given number of bytes have been read. More...
 
 GuzzleHttp\Psr7::hash (StreamInterface $stream, $algo, $rawOutput=false)
 Calculate a hash of a Stream. More...
 
 GuzzleHttp\Psr7::readline (StreamInterface $stream, $maxLength=null)
 Read a line from the stream up to the maximum allowed buffer length. More...
 
 GuzzleHttp\Psr7::parse_request ($message)
 Parses a request message string into a request object. More...
 
 GuzzleHttp\Psr7::parse_response ($message)
 Parses a response message string into a response object. More...
 
 GuzzleHttp\Psr7::parse_query ($str, $urlEncoding=true)
 Parse a query string into an associative array. More...
 
 GuzzleHttp\Psr7::build_query (array $params, $encoding=PHP_QUERY_RFC3986)
 Build a query string from an array of key value pairs. More...
 
 GuzzleHttp\Psr7::mimetype_from_filename ($filename)
 Determines the mimetype of a file by looking at its extension. More...
 
 GuzzleHttp\Psr7::mimetype_from_extension ($extension)
 Maps a file extensions to a mimetype. More...
 
 GuzzleHttp\Psr7::_parse_message ($message)
 Parses an HTTP message into an associative array. More...
 
 GuzzleHttp\Psr7::_parse_request_uri ($path, array $headers)
 Constructs a URI for an HTTP request message. More...
 
 GuzzleHttp\Psr7::_caseless_remove ($keys, array $data)