Call to undefined function think\\finfo_open() 解决方案
今天在做头像修改的时候报错的,提示错误:
Call to undefined function think \ finfo_open()} /** * 获取文件类型信息 * @access public * @return string */
public function getMime(): string {
$finfo = finfo_open(FILEINFO_MIME_TYPE);
return finfo_file($finfo, $this->getPathname());
}
查了下资料,需要在php里安装这个插件
暂无评论