1.首先检查系统是否已经安装
[root@iZbp1dwql3ymcem09rfdchZ ~]# PHP -i|grep fileinfo Configure Command => './configure' '--prefix=/alidata/server/PHP' '--enable-opcache' '--with-config-file-path=/alidata/server/PHP/etc' '--with-MysqL=MysqLnd' '--with-MysqLi=MysqLnd' '--with-pdo-MysqL=MysqLnd' '--enable-fpm' '--enable-fastcgi' '--enable-static' '--enable-inline-optimization' '--enable-sockets' '--enable-wddx' '--enable-zip' '--enable-calendar' '--enable-bcmath' '--enable-soap' '--with-zlib' '--with-iconv' '--with-gd' '--with-xmlrpc' '--enable-mbstring' '--without-sqlite' '--with-curl' '--enable-ftp' '--with-mcrypt' '--with-freetype-dir=/usr/local/freetype.2.1.10' '--with-jpeg-dir=/usr/local/jpeg.6' '--with-png-dir=/usr/local/libpng.1.2.50' '--disable-ipv6' '--disable-debug' '--with-openssl' '--disable-maintainer-zts' '--disable-safe-mode' '--disable-fileinfo' fileinfo fileinfo support => enabled
如果出现上面说明已经安装
2.执行下载包含fileinfo扩展的PHP安装包命令,也可以独立下载fileinfo编译安装包
wget -O PHP-5.6.9.tar.gz http://cn2.PHP.net/get/PHP-5.6.9.tar.gz/from/this/mirror
3.解压
tar -zxvf PHP-5.6.9.tar.gz
4.当前目录解压完,进入下面目录
cd PHP-5.6.9/ext/fileinfo/
5.在之前已经编译安装的的PHP的bin目录中找到命令PHPize执行生成.configure文件
本人已安装PHP的目录命令:/alidata/server/PHP-5.5.7/bin/PHPize
6.配置、编译安装
./configure -with-PHP-config=/alidata/server/PHP-5.5.7/bin/PHP-config
make && make install
7.修改PHP.ini
加入:extension=fileinfo.so
8.重启服务器,完成
原文链接:https://www.f2er.com/centos/378291.html