PHP 使用curl获取文件mime-types的函数。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 使用curl获取文件mime-types的函数。相关的知识,希望对你有一定的参考价值。
function file_mime($_path) {
$ch = curl_init($_path);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);
$content_info = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);
$content_parts = explode(";", $content_info);
$mime = $content_parts[0];
if(isset($mime) && !empty($mime)){return $mime;}
else if (function_exists('finfo_open')) {
$get_info = new finfo;
$mime = $finfo->file($_path, FILEINFO_MIME);
return $mime;
}
else { $mime = 'application/octet-stream'; return $mime;}
}
以上是关于PHP 使用curl获取文件mime-types的函数。的主要内容,如果未能解决你的问题,请参考以下文章
访问 Apache 的 Mime-Type 到扩展映射
PHP 使用curl获取文件内容的函数。
服务器上的 PHP 文件上传将 mime-type 更改为 application/octet-stream
PHP 使用curl以多种格式获取文件大小的函数。
PHP cUrl - 无法获取大文件[重复]
php:使用 cURL 获取 url 内容(json)