The fileinfo PHP extension is not installed解决思路

php没有加载或按照fileinfo这个扩展

1,找到服务器当前使用的php,比如安装目录在/usr/local/php7,那相对应的phpize路径为/usr/local/php7/bin/phpize

2,找到PHP的安装源码,进入ext/fileinfo文件夹,运行/usr/local/php7/bin/phpize

3,然后运行

     ./configure --with-php-config=/usr/local/php7/bin/php-config --enable-fileinfo

4,make

5,make install

注意:如果中途出错,用命令 make clean  然后再重新执行命令

6,在php.ini中要加入extension=fileinfo.so

7,重启php服务

The fileinfo PHP extension is not installed解决思路The fileinfo PHP extension is not installed解决思路 华章酱 发布了67 篇原创文章 · 获赞 24 · 访问量 5万+ 私信 关注
上一篇:VS Code Extension for IDL体验日记


下一篇:windows下配置php环境变量