-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
8000
Show file tree
Hide file tree
Add docs for the Mime component #10886
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
Closed
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
added docs for the Mime component
- Loading branch information
commit bd2531246bc92869320e2ae26ddc7a8475fa5828
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
.. index:: | ||
single: MIME | ||
single: Components; MIME | ||
|
||
The MIME Component | ||
================== | ||
|
||
The MIME component allows manipulating MIME types. | ||
|
||
Installation | ||
------------ | ||
|
||
.. code-block:: terminal | ||
|
||
$ composer require symfony/mime | ||
|
||
Alternatively, you can clone the `<https://github.com/symfony/mime>`_ repository. | ||
|
||
.. include:: /components/require_autoload.rst.inc | ||
|
||
.. tip:: | ||
|
||
You should have the ``fileinfo`` PHP extension installed for greater performance. | ||
|
||
MIME Types | ||
---------- | ||
|
||
The :class:`Symfony\\Component\\Mime\\MimeTypes` class manipulates the | ||
relationships between MIME types and file name extensions:: | ||
|
||
use Symfony\Component\Mime\MimeTypes; | ||
|
||
$mimeTypes = new MimeTypes(); | ||
$exts = $mimeTypes->getExtensions('application/mbox'); | ||
// $exts contains an array of extensions: ['mbox'] | ||
|
||
$mimeTypes = $mimeTypes->getMimeTypes('mbox'); | ||
// $mimeTypes contains an array of MIME types: ['application/mbox'] | ||
|
||
// guess a mime type for a file | ||
$mimeType = $mimeTypes->guessMimeType('/some/path/to/image.gif'); | ||
|
||
Adding a MIME Type Guesser | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
You can register your own MIME type guesser by creating a class that extends | ||
:class:`Symfony\\Component\\Mime\\MimeTypeGuesserInterface`:: | ||
|
||
namespace App; | ||
|
||
use Symfony\Component\Mime\MimeTypeGuesserInterface; | ||
|
||
class SomeMimeTypeGuesser implements MimeTypeGuesserInterface | ||
{ | ||
public function isGuesserSupported(): bool | ||
{ | ||
// return true when the guesser is supported (might depend on the OS for instance) | ||
fabpot marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return true; | ||
} | ||
|
||
public function guessMimeType(string $path): ?string | ||
{ | ||
// return a MIME type based on the content of the file stored in $path | ||
// you MUST not use the filename to determine the MIME type. | ||
return 'text/plain'; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ Tag Name Usage | |
`kernel.event_listener`_ Listen to different events/hooks in Symfony | ||
`kernel.event_subscriber`_ To subscribe to a set of different events/hooks in Symfony | ||
`kernel.fragment_renderer`_ Add new HTTP content rendering strategies | ||
`mime.mime_type_guesser`_ Add a custom mime type guesser to MimeTypes | ||
`monolog.logger`_ Logging with a custom logging channel | ||
`monolog.processor`_ Add a custom processor for logging | ||
`routing.loader`_ Register a custom service that loads routes | ||
|
@@ -450,6 +451,15 @@ To add a new rendering strategy - in addition to the core strategies like | |
:class:`Symfony\\Component\\HttpKernel\\Fragment\\FragmentRendererInterface`, | ||
register it as a service, then tag it with ``kernel.fragment_renderer``. | ||
|
||
mime.mime_type_guesser | ||
---------------------- | ||
|
||
**Purpose**: Add a custom MIME type guesser to MimeTypes | ||
|
||
To add a custom MIME type guesser - in addition to the core guessers - create a | ||
class that implements :class:`Symfony\\Component\\Mime\\MimeTypes`, register it | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it |
||
as a service, then tag it with ``mime.mime_type_guesser``. | ||
|
||
.. _dic_tags-monolog: | ||
|
||
monolog.logger | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.