elephox / mimey
PHP包,用于将文件扩展名转换为MIME类型,反之亦然。
4.0.7
2023-12-16 17:08 UTC
Requires
- php: ^8.1 <8.5
- jetbrains/phpstorm-attributes: ^1.0
Requires (Dev)
- phpunit/phpunit: ^10
Suggests
- ext-mbstring: For non-English (user) input parsing
README
PHP包,用于将文件扩展名转换为MIME类型,反之亦然。
此包使用httpd的mime.types来生成文件扩展名到MIME类型的映射以及反过来。点击此处查看从他们的svn的变更日志:变更日志
由bin/generate.php
解析的mime.types
文件,并转换为存储在dist/mime.types.min.json
中的优化JSON对象,然后由辅助类MimeTypes
包装。
自3.1.0起:还提供了一个包含所有MIME类型的PHP枚举以及获取扩展的方法。也可以从扩展获取枚举值。
使用方法
$mimes = new MimeTypes; // Convert extension to MIME type: $mimes->getMimeType('json'); // application/json // Convert MIME type to extension: $mimes->getExtension('application/json'); // json
使用枚举
$json = MimeType::ApplicationJson; echo $json->getExtension(); // json echo $json->value; // application/json $html = MimeType::fromExtension('html'); echo $html->value; // text/html MimeType::fromExtension('asdf'); // throws an InvalidArgumentException if the extension cannot be found
获取所有
很少见,但有些扩展有多种MIME类型
// Get all MIME types for an extension: $mimes->getAllMimeTypes('wmz'); // array('application/x-ms-wmz', 'application/x-msmetafile')
然而,有许多MIME类型有多种扩展
// Get all extensions for a MIME type: $mimes->getAllExtensions('image/jpeg'); // array('jpeg', 'jpg', 'jpe')
自定义转换
您可以通过更改传递给MimeTypes
的映射来添加自定义转换。
有一个MimeMappingBuilder
可以帮助完成此操作
// Create a builder using the built-in conversions as the basis. $builder = MimeMappingBuilder::create(); // Add a conversion. This conversion will take precedence over existing ones. $builder->add('custom/mime-type', 'myextension'); $mimes = new MimeTypes($builder->getMapping()); $mimes->getMimeType('myextension'); // custom/mime-type $mimes->getExtension('custom/mime-type'); // myextension
您可以向构建器添加任意多的转换
$builder->add('custom/mime-type', 'myextension'); $builder->add('foo/bar', 'foobar'); $builder->add('foo/bar', 'fbar'); $builder->add('baz/qux', 'qux'); $builder->add('cat/qux', 'qux'); ...
优化自定义转换加载
您可以通过将所有转换保存为构建步骤的一部分的编译PHP文件来优化自定义转换的加载。
// Add a bunch of custom conversions. $builder->add(...); $builder->add(...); $builder->add(...); ... // Save the conversions to a cached file. $builder->save($cache_file_path);
然后可以加载此文件,以避免重复调用$builder->add(...)
的开销
// Load the conversions from a cached file. $builder = MimeMappingBuilder::load($cache_file_path); $mimes = new MimeTypes($builder->getMapping());
安装
与PHP >= 8.1兼容。
composer require elephox/mimey
贡献
缺少MIME类型?
打开一个issue或者甚至自己添加它!这个过程非常简单
- 分支此仓库
- 将您的MIME类型添加到
data/mime.types.custom
文件中(确保格式正确!) - 推送您的更改
- 提交一个pull request
经过简短审查和合并后,MIME类型将自动添加到库中。
如果您愿意,还可以运行composer generate-types
并将更改后的文件添加到dist/
下的PR中。
致谢
此分支使用与原始仓库相同的许可证(MIT)。此仓库是ralouphie/mimey的分支。感谢他们以及所有贡献者!