fileeye/mimemap
Composer 安装命令:
composer require fileeye/mimemap
包简介
A PHP library to handle MIME Content-Type fields and their related file extensions.
README 文档
README
A PHP library to handle MIME Content-Type fields and their related file extensions.
Features
- Parses MIME Content-Type fields
- Supports the RFC 2045 specification
- Provides utility functions for working with and determining info about MIME types
- Map file extensions to MIME types and vice-versa
- Automatically update the mapping between MIME types and file extensions from the most authoritative sources available, Apache's documentation and the freedesktop.org project.
- PHPUnit tested, 100% test coverage
- PHPStan tested, level 10
Credits
MimeMap is a fork of PEAR's MIME_Type package. See all the original contributors.
Note that in comparison with PEAR's MIME_Type, this library has a different scope, mainly focused on finding the mapping between each MIME type and its generally accepted file extensions. Features to detect the MIME type of a file have been removed. The symfony/http-foundation library and its MimeTypeGuesser API are the suggested components to cover that use case.
Alternative packages
MimeMap's main difference from similar packages is that it provides functionalities to use multiple type-to-extension maps and to change the mapping either at runtime or statically in PHP classes. See wgenial/php-mimetyper for a nice list of alternative PHP libraries for MIME type handling.
Installation
$ composer require fileeye/mimemap
Usage
See latest documentation here, automated with phpDocumentor.
Basic
The package comes with a default map that describes MIME types and the file extensions normally associated to each MIME type. The map also stores information about MIME type aliases, (alternative media/subtype combinations that describe the same MIME type), and the descriptions of most MIME types and of the acronyms used.
For example: the MIME type 'application/pdf'
- is described as 'PDF document'
- the PDF acronym is described as 'PDF: Portable Document Format'
- is normally using a file extension 'pdf'
- has aliases such as 'application/x-pdf', 'image/pdf'
The API the package implements is pretty straightforward:
- You have a MIME type, and want to get the file extensions normally associated to it:
use FileEye\MimeMap\Type; ... $type = new Type('image/jpeg'); print_r($type->getExtensions()); // will print ['jpeg', 'jpg', 'jpe'] print_r($type->getDefaultExtension()); // will print 'jpeg' // When passing an alias to a MIME type, the API will // return the extensions to the parent type: $type = new Type('image/pdf'); print_r($type->getDefaultExtension()); // will print 'pdf' which is the default extension for 'application/pdf'
- Viceversa, you have a file extensions, and want to get the MIME type normally associated to it:
use FileEye\MimeMap\Extension; ... $ext = new Extension('xar'); print_r($ext->getTypes()); // will return ['application/vnd.xara', 'application/x-xar'] print_r($ext->getDefaultType()); // will return 'application/vnd.xara'
- You have a raw MIME Content-Type string and want to add a parameter:
use FileEye\MimeMap\Type; ... $type = new Type('text / (Unstructured text) plain ; charset = (UTF8, not ASCII) utf-8'); $type->addParameter('lang', 'it', 'Italian'); echo $type->toString(Type::SHORT_TEXT); // will print 'text/plain' echo $type->toString(Type::FULL_TEXT); // will print 'text/plain; charset="utf-8"; lang="it"' echo $type->toString(Type::FULL_TEXT_WITH_COMMENTS); // will print 'text/plain (Unstructured text); charset="utf-8" (UTF8, not ASCII), lang="it" (Italian)'
- You have a MIME Content-Type string and want to add the type's description as a comment:
use FileEye\MimeMap\Type; ... $type = new Type('text/html'); $type_desc = $type->getDescription(); $type->setSubTypeComment($type_desc); echo $type->toString(Type::FULL_TEXT_WITH_COMMENTS); // will print 'text/html (HTML document)' // Setting the $include_acronym parameter of getDescription to true // will extend the description to include the meaning of the acronym $type_desc = $type->getDescription(true); $type->setSubTypeComment($type_desc); echo $type->toString(Type::FULL_TEXT_WITH_COMMENTS); // will print 'text/html (HTML document, HTML: HyperText Markup Language)'
Specify alternative MIME type mapping
You can also alter the default map at runtime, either by adding/removing
mappings, or indicating to MimeMap to use a totally different map. The
alternative map must be stored in a PHP class that extends from
\FileEye\MimeMap\Map\AbstractMap.
- You want to add an additional MIME type to extension mapping to the default class:
use FileEye\MimeMap\Extension; use FileEye\MimeMap\MapHandler; use FileEye\MimeMap\Type; ... $map = MapHandler::map(); $map->addTypeExtensionMapping('foo/bar', 'baz'); $type = new Type('foo/bar'); $default_extension = $type->getDefaultExtension(); // will return 'baz' $ext = new Extension('baz'); $default_type = $ext->getDefaultExtension(); // will return 'foo/bar'
- You want to set an alternative map class as default:
use FileEye\MimeMap\Extension; use FileEye\MimeMap\MapHandler; use FileEye\MimeMap\Type; ... MapHandler::setDefaultMapClass('MyProject\MyMap'); ...
- You can also use the alternative map just for a single Type or Extension object:
use FileEye\MimeMap\Extension; use FileEye\MimeMap\Type; ... $type = new Type('foo/bar', 'MyProject\MyMap'); $ext = new Extension('baz', 'MyProject\MyMap');
Development
Updating the extension mapping code
The default extension-to-type mapping class can be updated from the sources'
code repositories, using the fileeye-mimemap utility:
$ cd [project_directory]/vendor/bin
$ fileeye-mimemap update
By default, the utility fetches a mapping source available from the Apache's documentation
website, merges it with another mapping source from the freedesktop.org project,
then integrates the result with any overrides specified in the
resources/default_map_build.yml file, and finally updates the PHP file where
the \FileEye\MimeMap\Map\DefaultMap class is stored.
The --script and --class options allow specifying a different update logic
and a different class file to update. Type
$ fileeye-mimemap update --help
to get more information.
fileeye/mimemap 适用场景与选型建议
fileeye/mimemap 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9.88M 次下载、GitHub Stars 达 26, 最近一次更新时间为 2019 年 01 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「mime」 「mime-type」 「mime-parser」 「mime-database」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 fileeye/mimemap 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 fileeye/mimemap 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 fileeye/mimemap 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PHP class providing static methods for reading, writing, copying, moving, and deleting files and directories, MIME type detection, image size detection, and file permission management
Parse a generic mail stream, and convert it to a SwiftMailer Message
Mime-Types
Faster MIME Mail Parser could be used to parse emails in MIME format.
PHP package for converting file extensions to MIME types and vice versa.
Send messages via Mailgun and synchronise with Mailgun Events API.
统计信息
- 总下载量: 9.88M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 26
- 点击次数: 24
- 依赖项目数: 11
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-or-later
- 更新时间: 2019-01-17