gpt4 book ai didi

php - mime_content_type() 函数未定义

转载 作者:IT王子 更新时间:2023-10-29 00:16:47 26 4
gpt4 key购买 nike

我正在使用 mime_content_type() 函数上传文件,它在本地主机上工作正常,但我在我的实时服务器上遇到以下错误:

Fatal error: Call to undefined function mime_content_type()

最佳答案

更新:

mime_content_type() 不再被弃用,php7 现在支持这个功能。

我的回答的早期版本:

mime_content_type() is deprecated, probably because [fileinfo][1] can give you those information about the file and more.

You can use finfo() like shown below,

function _mime_content_type($filename) {
$result = new finfo();

if (is_resource($result) === true) {
return $result->file($filename, FILEINFO_MIME_TYPE);
}

return false;
}

Ref: https://stackoverflow.com/a/1263977/1161412

[1]: http://php.net/manual/en/class.finfo.php

关于php - mime_content_type() 函数未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14809054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com