为什么在PHP中不推荐mime_content_type()?
我只是想知道为什么现在认为mime_content_type()已被弃用。
这种确定mime类型的方法比替换Fileinfo功能要容易得多。
回答:
我猜这是因为Fileinfo可以返回有关files的更多信息。
function _mime_content_type($filename) { $result = new finfo();
if (is_resource($result) === true) {
return $result->file($filename, FILEINFO_MIME_TYPE);
}
return false;
}
以上是 为什么在PHP中不推荐mime_content_type()? 的全部内容, 来源链接: utcz.com/qa/416766.html