Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[HttpFoundation] Add info for getAcceptableFormats() method #9898

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions components/http_foundation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,21 @@ by using the following methods:
:method:`Symfony\\Component\\HttpFoundation\\Request::getAcceptableContentTypes`
Returns the list of accepted content types ordered by descending quality.

:method:`Symfony\\Component\\HttpFoundation\\Request::getAcceptableFormats`
Returns the list of accepted client formats associated with the request.

Note that
:method:`Symfony\\Component\\HttpFoundation\\Request::getAcceptableFormats`
will use the data from
:method:`Symfony\\Component\\HttpFoundation\\Request::getAcceptableContentTypes`
and return the client acceptable formats::

$request->getAcceptableContentTypes();
// returns ['text/html', 'application/xhtml+xml', 'application/xml', '*/*']

$request->getAcceptableFormats();
// returns ['html', 'xml']

:method:`Symfony\\Component\\HttpFoundation\\Request::getLanguages`
Returns the list of accepted languages ordered by descending quality.

Expand Down