cosmicvelocity / media-types
Detect the Media Type (MIME Type) of a file or extentions.
1.2
2018-04-11 04:05 UTC
Requires
- php: ^5.4|^7.0
Requires (Dev)
- phpunit/phpunit: ^4.8|^5.7
This package is not auto-updated.
Last update: 2024-11-14 20:05:49 UTC
README
A PHP library for handling media types.
- Supports the RFC 6838 specification.
- MIME type character string analysis can be performed.
- Supports automatic detection from filename with built-in mapping list.
- Supports automatic detection by Fileinfo extension.
Installation
If composer is used, it can be introduced by adding the following description.
"require": {
"cosmicvelocity/media-types": ">=1.0"
}
How to use
-
When detecting from file name.
$mediaTypes = new PhpArrayMediaTypes(); $mediaType = $mediaTypes->getMediaType('sample.txt'); $mediaType->getType(); // text
-
To detect from your own mapping.
$mediaTypes = new PhpArrayMediaTypes([ 'hoge' => 'application/prs.hoge+xml' ]); $mediaType = $mediaTypes->getMediaType('sample.hoge'); $mediaType->getType(); // application $mediaType->getSubType(); // prs.hoge+xml $mediaType->getTree(); // prs $mediaType->getSuffix(); // xml
-
When analyzing MIME type.
$mediaType = MediaType::fromMime('application/calendar+json; charset=utf-8'); $mediaType->getType(); // application $mediaType->getSubType(); // calendar+json $mediaType->getSuffix(); // json $mediaType->getParameter('charset')->getValue(); // utf-8
-
When detecting from a file.
$mediaType = MediaType::fromFile('sample.json'); $mediaType->getType(); // text $mediaType->getSubType(); // plain