vnappmob/ext-mime-type

自定义MIME内容类型

1.0.4 2024-08-23 06:01 UTC

This package is auto-updated.

Last update: 2024-09-23 06:07:39 UTC


README

当前的PHP mime_content_type 函数根据 magic.mime 文件中的信息确定文件的MIME内容类型。例如,对于css或javascript类型的文件,可能返回 text/plain

此实现使用文件扩展名到文件类型内容的映射/字典进行解析(原始来源 svogal

用法

require_once __DIR__ . '/vendor/autoload.php';

$file_path = './path/to/file.js';
$mime_type = VNAppMob\ExtMimeType::getMimeContentType($file_path);
...