The HttpFoundation Component

The HttpFoundation Component

The HttpFoundation component defines an object-oriented layer for the HTTP specification.

In PHP, the request is represented by some global variables ($_GET, $_POST, $_FILES, $_COOKIE, $_SESSION, …) and the response is generated by some functions (echo, header(),setcookie(), …).

The Symfony HttpFoundation component replaces these default PHP global variables and functions by an object-oriented layer.

Installation

  1. $ composer require symfony/http-foundation

Note

If you install this component outside of a Symfony application, you must require the vendor/autoload.php file in your code to enable the class autoloading mechanism provided by Composer. Read this article for more details.

See also

This article explains how to use the HttpFoundation features as an independent component in any PHP application. In Symfony applications everything is already configured and ready to use. Read the Controller article to learn about how to use these features when creating controllers.

Request

The most common way to create a request is to base it on the current PHP global variables with createFromGlobals():

  1. use Symfony\Component\HttpFoundation\Request;
  2. $request = Request::createFromGlobals();

which is almost equivalent to the more verbose, but also more flexible, __construct() call:

  1. $request = new Request(
  2. $_GET,
  3. $_POST,
  4. [],
  5. $_COOKIE,
  6. $_FILES,
  7. $_SERVER
  8. );

Accessing Request Data

A Request object holds information about the client request. This information can be accessed via several public properties:

  • request: equivalent of $_POST;
  • query: equivalent of $_GET (`$request->query->get(‘name’));
  • cookies: equivalent of $_COOKIE;
  • attributes: no equivalent - used by your app to store other data (see below);
  • files: equivalent of $_FILES;
  • server: equivalent of $_SERVER;
  • headers: mostly equivalent to a subset of $_SERVER (`$request->headers->get(‘User-Agent’)).

Each property is a Symfony\Component\HttpFoundation\ParameterBag instance (or a sub-class of), which is a data holder class:

  • request: Symfony\Component\HttpFoundation\ParameterBag or Symfony\Component\HttpFoundation\InputBag if the data is coming from $_POST parameters;
  • query: Symfony\Component\HttpFoundation\InputBag;
  • cookies: Symfony\Component\HttpFoundation\InputBag;
  • attributes: Symfony\Component\HttpFoundation\ParameterBag;
  • files: Symfony\Component\HttpFoundation\FileBag;
  • server: Symfony\Component\HttpFoundation\ServerBag;
  • headers: Symfony\Component\HttpFoundation\HeaderBag.

All Symfony\Component\HttpFoundation\ParameterBag instances have methods to retrieve and update their data:

all()

Returns the parameters.

keys()

Returns the parameter keys.

replace()

Replaces the current parameters by a new set.

add()

Adds parameters.

get()

Returns a parameter by name.

set()

Sets a parameter by name.

has()

Returns true if the parameter is defined.

remove()

Removes a parameter.

The Symfony\Component\HttpFoundation\ParameterBag instance also has some methods to filter the input values:

getAlpha()

Returns the alphabetic characters of the parameter value;

getAlnum()

Returns the alphabetic characters and digits of the parameter value;

getBoolean()

Returns the parameter value converted to boolean;

getDigits()

Returns the digits of the parameter value;

getInt()

Returns the parameter value converted to integer;

filter()

Filters the parameter by using the PHP filter_var function.

All getters take up to two arguments: the first one is the parameter name and the second one is the default value to return if the parameter does not exist:

  1. // the query string is '?foo=bar'
  2. $request->query->get('foo');
  3. // returns 'bar'
  4. $request->query->get('bar');
  5. // returns null
  6. $request->query->get('bar', 'baz');
  7. // returns 'baz'

When PHP imports the request query, it handles request parameters like foo[bar]=baz in a special way as it creates an array. So you can get the foo parameter and you will get back an array with a bar element:

  1. // the query string is '?foo[bar]=baz'
  2. $request->query->get('foo');
  3. // returns ['bar' => 'baz']
  4. $request->query->get('foo[bar]');
  5. // returns null
  6. $request->query->get('foo')['bar'];
  7. // returns 'baz'

Thanks to the public attributes property, you can store additional data in the request, which is also an instance of Symfony\Component\HttpFoundation\ParameterBag. This is mostly used to attach information that belongs to the Request and that needs to be accessed from many different points in your application.

Finally, the raw data sent with the request body can be accessed using getContent():

  1. $content = $request->getContent();

For instance, this may be useful to process an XML string sent to the application by a remote service using the HTTP POST method.

If the request body is a JSON string, it can be accessed using toArray():

  1. $data = $request->toArray();

New in version 5.2: The `toArray() method was introduced in Symfony 5.2.

Identifying a Request

In your application, you need a way to identify a request; most of the time, this is done via the “path info” of the request, which can be accessed via the getPathInfo() method:

  1. // for a request to http://example.com/blog/index.php/post/hello-world
  2. // the path info is "/post/hello-world"
  3. $request->getPathInfo();

Simulating a Request

Instead of creating a request based on the PHP globals, you can also simulate a request:

  1. $request = Request::create(
  2. '/hello-world',
  3. 'GET',
  4. ['name' => 'Fabien']
  5. );

The create() method creates a request based on a URI, a method and some parameters (the query parameters or the request ones depending on the HTTP method); and of course, you can also override all other variables as well (by default, Symfony creates sensible defaults for all the PHP global variables).

Based on such a request, you can override the PHP global variables via overrideGlobals():

  1. $request->overrideGlobals();

Tip

You can also duplicate an existing request via duplicate() or change a bunch of parameters with a single call to initialize().

Accessing the Session

If you have a session attached to the request, you can access it via the getSession() method or the getSession() method; the hasPreviousSession() method tells you if the request contains a session which was started in one of the previous requests.

Processing HTTP Headers

Processing HTTP headers is not a trivial task because of the escaping and white space handling of their contents. Symfony provides a Symfony\Component\HttpFoundation\HeaderUtils class that abstracts this complexity and defines some methods for the most common tasks:

  1. use Symfony\Component\HttpFoundation\HeaderUtils;
  2. // Splits an HTTP header by one or more separators
  3. HeaderUtils::split('da, en-gb;q=0.8', ',;');
  4. // => [['da'], ['en-gb','q=0.8']]
  5. // Combines an array of arrays into one associative array
  6. HeaderUtils::combine([['foo', 'abc'], ['bar']]);
  7. // => ['foo' => 'abc', 'bar' => true]
  8. // Joins an associative array into a string for use in an HTTP header
  9. HeaderUtils::toString(['foo' => 'abc', 'bar' => true, 'baz' => 'a b c'], ',');
  10. // => 'foo=abc, bar, baz="a b c"'
  11. // Encodes a string as a quoted string, if necessary
  12. HeaderUtils::quote('foo "bar"');
  13. // => '"foo \"bar\""'
  14. // Decodes a quoted string
  15. HeaderUtils::unquote('"foo \"bar\""');
  16. // => 'foo "bar"'
  17. // Parses a query string but maintains dots (PHP parse_str() replaces '.' by '_')
  18. HeaderUtils::parseQuery('foo[bar.baz]=qux');
  19. // => ['foo' => ['bar.baz' => 'qux']]

New in version 5.2: The `parseQuery() method was introduced in Symfony 5.2.

Accessing Accept-* Headers Data

You can access basic data extracted from Accept-* headers by using the following methods:

getAcceptableContentTypes()

Returns the list of accepted content types ordered by descending quality.

getLanguages()

Returns the list of accepted languages ordered by descending quality.

getCharsets()

Returns the list of accepted charsets ordered by descending quality.

getEncodings()

Returns the list of accepted encodings ordered by descending quality.

If you need to get full access to parsed data from Accept, Accept-Language, Accept-Charset or Accept-Encoding, you can use Symfony\Component\HttpFoundation\AcceptHeader utility class:

  1. use Symfony\Component\HttpFoundation\AcceptHeader;
  2. $acceptHeader = AcceptHeader::fromString($request->headers->get('Accept'));
  3. if ($acceptHeader->has('text/html')) {
  4. $item = $acceptHeader->get('text/html');
  5. $charset = $item->getAttribute('charset', 'utf-8');
  6. $quality = $item->getQuality();
  7. }
  8. // Accept header items are sorted by descending quality
  9. $acceptHeaders = AcceptHeader::fromString($request->headers->get('Accept'))
  10. ->all();

The default values that can be optionally included in the Accept-* headers are also supported:

  1. $acceptHeader = 'text/plain;q=0.5, text/html, text/*;q=0.8, */*;q=0.3';
  2. $accept = AcceptHeader::fromString($acceptHeader);
  3. $quality = $accept->get('text/xml')->getQuality(); // $quality = 0.8
  4. $quality = $accept->get('application/xml')->getQuality(); // $quality = 0.3

Anonymizing IP Addresses

An increasingly common need for applications to comply with user protection regulations is to anonymize IP addresses before logging and storing them for analysis purposes. Use the anonymize() method from theSymfony\Component\HttpFoundation\IpUtils` to do that:

  1. use Symfony\Component\HttpFoundation\IpUtils;
  2. $ipv4 = '123.234.235.236';
  3. $anonymousIpv4 = IpUtils::anonymize($ipv4);
  4. // $anonymousIpv4 = '123.234.235.0'
  5. $ipv6 = '2a01:198:603:10:396e:4789:8e99:890f';
  6. $anonymousIpv6 = IpUtils::anonymize($ipv6);
  7. // $anonymousIpv6 = '2a01:198:603:10::'

Accessing other Data

The Request class has many other methods that you can use to access the request information. Have a look at the Request API for more information about them.

Overriding the Request

The Request class should not be overridden as it is a data object that represents an HTTP message. But when moving from a legacy system, adding methods or changing some default behavior might help. In that case, register a PHP callable that is able to create an instance of your Request class:

  1. use App\Http\SpecialRequest;
  2. use Symfony\Component\HttpFoundation\Request;
  3. Request::setFactory(function (
  4. array $query = [],
  5. array $request = [],
  6. array $attributes = [],
  7. array $cookies = [],
  8. array $files = [],
  9. array $server = [],
  10. $content = null
  11. ) {
  12. return new SpecialRequest(
  13. $query,
  14. $request,
  15. $attributes,
  16. $cookies,
  17. $files,
  18. $server,
  19. $content
  20. );
  21. });
  22. $request = Request::createFromGlobals();

Response

A Symfony\Component\HttpFoundation\Response object holds all the information that needs to be sent back to the client from a given request. The constructor takes up to three arguments: the response content, the status code, and an array of HTTP headers:

  1. use Symfony\Component\HttpFoundation\Response;
  2. $response = new Response(
  3. 'Content',
  4. Response::HTTP_OK,
  5. ['content-type' => 'text/html']
  6. );

This information can also be manipulated after the Response object creation:

  1. $response->setContent('Hello World');
  2. // the headers public attribute is a ResponseHeaderBag
  3. $response->headers->set('Content-Type', 'text/plain');
  4. $response->setStatusCode(Response::HTTP_NOT_FOUND);

When setting the Content-Type of the Response, you can set the charset, but it is better to set it via the setCharset() method:

  1. $response->setCharset('ISO-8859-1');

Note that by default, Symfony assumes that your Responses are encoded in UTF-8.

Sending the Response

Before sending the Response, you can optionally call the prepare() method to fix any incompatibility with the HTTP specification (e.g. a wrong Content-Type header):

  1. $response->prepare($request);

Sending the response to the client is done by calling the method send():

  1. $response->send();

Setting Cookies

The response cookies can be manipulated through the headers public attribute:

  1. use Symfony\Component\HttpFoundation\Cookie;
  2. $response->headers->setCookie(Cookie::create('foo', 'bar'));

The setCookie() method takes an instance of Symfony\Component\HttpFoundation\Cookie as an argument.

You can clear a cookie via the clearCookie() method.

In addition to the Cookie::create() method, you can create aCookieobject from a raw header value using [fromString()](https://github.com/symfony/symfony/blob/5.3/src/Symfony/Component/HttpFoundation/Cookie.php "Symfony\Component\HttpFoundation\Cookie::fromString()") method. You can also use thewith() methods to change some Cookie property (or to build the entire Cookie using a fluent interface). Each `with() method returns a new object with the modified property:

  1. $cookie = Cookie::create('foo')
  2. ->withValue('bar')
  3. ->withExpires(strtotime('Fri, 20-May-2011 15:25:52 GMT'))
  4. ->withDomain('.example.com')
  5. ->withSecure(true);

New in version 5.1: The `with*() methods were introduced in Symfony 5.1.

Managing the HTTP Cache

The Symfony\Component\HttpFoundation\Response class has a rich set of methods to manipulate the HTTP headers related to the cache:

Note

The methods setExpires(), setLastModified() and setDate() accept any object that implements \DateTimeInterface, including immutable date objects.

The setCache() method can be used to set the most commonly used cache information in one method call:

  1. $response->setCache([
  2. 'must_revalidate' => false,
  3. 'no_cache' => false,
  4. 'no_store' => false,
  5. 'no_transform' => false,
  6. 'public' => true,
  7. 'private' => false,
  8. 'proxy_revalidate' => false,
  9. 'max_age' => 600,
  10. 's_maxage' => 600,
  11. 'immutable' => true,
  12. 'last_modified' => new \DateTime(),
  13. 'etag' => 'abcdef',
  14. ]);

New in version 5.1: The must_revalidate, no_cache, no_store, no_transform and proxy_revalidate directives were introduced in Symfony 5.1.

To check if the Response validators (ETag, Last-Modified) match a conditional value specified in the client Request, use the isNotModified() method:

  1. if ($response->isNotModified($request)) {
  2. $response->send();
  3. }

If the Response is not modified, it sets the status code to 304 and removes the actual response content.

Redirecting the User

To redirect the client to another URL, you can use the Symfony\Component\HttpFoundation\RedirectResponse class:

  1. use Symfony\Component\HttpFoundation\RedirectResponse;
  2. $response = new RedirectResponse('http://example.com/');

Streaming a Response

The Symfony\Component\HttpFoundation\StreamedResponse class allows you to stream the Response back to the client. The response content is represented by a PHP callable instead of a string:

  1. use Symfony\Component\HttpFoundation\StreamedResponse;
  2. $response = new StreamedResponse();
  3. $response->setCallback(function () {
  4. var_dump('Hello World');
  5. flush();
  6. sleep(2);
  7. var_dump('Hello World');
  8. flush();
  9. });
  10. $response->send();

Note

The flush() function does not flush buffering. Ifob_start() has been called before or the output_buffering php.ini option is enabled, you must call ob_flush() beforeflush().

Additionally, PHP isn’t the only layer that can buffer output. Your web server might also buffer based on its configuration. Some servers, such as nginx, let you disable buffering at the config level or by adding a special HTTP header in the response:

  1. // disables FastCGI buffering in nginx only for this response
  2. $response->headers->set('X-Accel-Buffering', 'no');

Serving Files

When sending a file, you must add a Content-Disposition header to your response. While creating this header for basic file downloads is straightforward, using non-ASCII filenames is more involved. The makeDisposition() abstracts the hard work behind a simple API:

  1. use Symfony\Component\HttpFoundation\HeaderUtils;
  2. use Symfony\Component\HttpFoundation\Response;
  3. use Symfony\Component\HttpFoundation\ResponseHeaderBag;
  4. $fileContent = ...; // the generated file content
  5. $response = new Response($fileContent);
  6. $disposition = HeaderUtils::makeDisposition(
  7. HeaderUtils::DISPOSITION_ATTACHMENT,
  8. 'foo.pdf'
  9. );
  10. $response->headers->set('Content-Disposition', $disposition);

Alternatively, if you are serving a static file, you can use a Symfony\Component\HttpFoundation\BinaryFileResponse:

  1. use Symfony\Component\HttpFoundation\BinaryFileResponse;
  2. $file = 'path/to/file.txt';
  3. $response = new BinaryFileResponse($file);

The BinaryFileResponse will automatically handle Range and If-Range headers from the request. It also supports X-Sendfile (see for nginx and Apache). To make use of it, you need to determine whether or not the X-Sendfile-Type header should be trusted and call trustXSendfileTypeHeader() if it should:

  1. BinaryFileResponse::trustXSendfileTypeHeader();

Note

The BinaryFileResponse will only handle X-Sendfile if the particular header is present. For Apache, this is not the default case.

To add the header use the mod_headers Apache module and add the following to the Apache configuration:

  1. <IfModule mod_xsendfile.c>
  2. # This is already present somewhere...
  3. XSendFile on
  4. XSendFilePath ...some path...
  5. # This needs to be added:
  6. <IfModule mod_headers.c>
  7. RequestHeader set X-Sendfile-Type X-Sendfile
  8. </IfModule>
  9. </IfModule>

With the BinaryFileResponse, you can still set the Content-Type of the sent file, or change its Content-Disposition:

  1. // ...
  2. $response->headers->set('Content-Type', 'text/plain');
  3. $response->setContentDisposition(
  4. ResponseHeaderBag::DISPOSITION_ATTACHMENT,
  5. 'filename.txt'
  6. );

It is possible to delete the file after the response is sent with the deleteFileAfterSend() method. Please note that this will not work when the X-Sendfile header is set.

If the size of the served file is unknown (e.g. because it’s being generated on the fly, or because a PHP stream filter is registered on it, etc.), you can pass a Stream instance to BinaryFileResponse. This will disable Range and Content-Length handling, switching to chunked encoding instead:

  1. use Symfony\Component\HttpFoundation\BinaryFileResponse;
  2. use Symfony\Component\HttpFoundation\File\Stream;
  3. $stream = new Stream('path/to/stream');
  4. $response = new BinaryFileResponse($stream);

Note

If you just created the file during this same request, the file may be sent without any content. This may be due to cached file stats that return zero for the size of the file. To fix this issue, call `clearstatcache(true, $file) with the path to the binary file.

Creating a JSON Response

Any type of response can be created via the Symfony\Component\HttpFoundation\Response class by setting the right content and headers. A JSON response might look like this:

  1. use Symfony\Component\HttpFoundation\Response;
  2. $response = new Response();
  3. $response->setContent(json_encode([
  4. 'data' => 123,
  5. ]));
  6. $response->headers->set('Content-Type', 'application/json');

There is also a helpful Symfony\Component\HttpFoundation\JsonResponse class, which can make this even easier:

  1. use Symfony\Component\HttpFoundation\JsonResponse;
  2. // if you know the data to send when creating the response
  3. $response = new JsonResponse(['data' => 123]);
  4. // if you don't know the data to send or if you want to customize the encoding options
  5. $response = new JsonResponse();
  6. // ...
  7. // configure any custom encoding options (if needed, it must be called before "setData()")
  8. //$response->setEncodingOptions(JsonResponse::DEFAULT_ENCODING_OPTIONS | \JSON_PRESERVE_ZERO_FRACTION);
  9. $response->setData(['data' => 123]);
  10. // if the data to send is already encoded in JSON
  11. $response = JsonResponse::fromJsonString('{ "data": 123 }');

The JsonResponse class sets the Content-Type header to application/json and encodes your data to JSON when needed.

Caution

To avoid XSSI JSON Hijacking, you should pass an associative array as the outer-most array to JsonResponse and not an indexed array so that the final result is an object (e.g. {"object": "not inside an array"}) instead of an array (e.g. [{“object”: “inside an array”}]`). Read the OWASP guidelines for more information.

Only methods that respond to GET requests are vulnerable to XSSI ‘JSON Hijacking’. Methods responding to POST requests only remain unaffected.

JSONP Callback

If you’re using JSONP, you can set the callback function that the data should be passed to:

  1. $response->setCallback('handleResponse');

In this case, the Content-Type header will be text/javascript and the response content will look like this:

  1. handleResponse({'data': 123});

Session

The session information is in its own document: Session Management.

Safe Content Preference

Some web sites have a “safe” mode to assist those who don’t want to be exposed to content to which they might object. The RFC 8674 specification defines a way for user agents to ask for safe content to a server.

The specification does not define what content might be considered objectionable, so the concept of “safe” is not precisely defined. Rather, the term is interpreted by the server and within the scope of each web site that chooses to act upon this information.

Symfony offers two methods to interact with this preference:

New in version 5.1: The preferSafeContent() andsetContentSafe() methods were introduced in Symfony 5.1.

The following example shows how to detect if the user agent prefers “safe” content:

  1. if ($request->preferSafeContent()) {
  2. $response = new Response($alternativeContent);
  3. // this informs the user we respected their preferences
  4. $response->setContentSafe();
  5. return $response;
  6. }

Learn More

This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.