CentOs環境下給PHP7.0安裝fileinfo擴充套件

OldBoy~發表於2017-10-14

由於專案搭建處於一個初步階段,由於環境的不成熟出現過一系列的問題是難免的,在關於檔案操作的程式中,報出一個缺少擴充套件的錯誤,已經解決~

看一下官方給出的說明,http://php.net/manual/zh/book.fileinfo.php

解決步驟

第一:先找到PHP安裝原始碼的位置,我下載到了/usr/local/src目錄下

確定好了PHP原始碼包安裝的位置之後,進入ext目錄下的fileinfo目錄

cd /usr/local/src/php-7.0.23/ext/fileinfo/

第二:找到phpize的目錄(關於phpize是什麼東東,官方 http://php.net/manual/en/install.pecl.phpize.php)

一般在php目錄下的bin目錄,我的環境下是在/usr/local/php/bin目錄下

/usr/local/php/bin    

不離開php安裝原始碼的ext/fileinfo目錄,執行以下命令

/usr/local/php/bin/phpize

返回

Configuring for:
PHP Api Version:         20151012
Zend Module Api No:      20151012
Zend Extension Api No:   320151012

第三:執行命令

./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

返回以下命令列說明安裝成功了~

Build complete.
Don't forget to run 'make test'.
Installing shared extensions:     /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/

第四:找到phpini位置,給phpini開啟擴充套件

最後重啟apache,重新整理phpinfo,看到大大的八個字母fileinfo,O(∩_∩)O

相關文章