- 服務(wù)器環(huán)境 CentOS 7.2
- 安裝的 PHP 版本 5.6.30
編譯安裝 PHP 之前先編譯安裝了 MySQL 5.6.35
戳我
首先下載對應(yīng)的 PHP 源碼包
mkdir ~/downloads
cd ~/downloads
wget http://sg2.php.net/distributions/php-5.6.30.tar.gz
解壓
tar -zxvf php-5.6.30.tar.gz
cd php-5.6.30
需要準(zhǔn)備一些依賴包队塘,下載
yum install -y libxml2-devel openssl-devel libcurl-devel gd gd-devel libmcrypt libmcrypt-devel libtool
配置檢查當(dāng)前系統(tǒng)環(huán)境
./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-iconv --with-jpeg-dir --with-png-dir --with-gd --with-freetype-dir --with-libxml-dir --with-pdo-mysql --with-openssl --with-mhash --with-zlib-dir --with-curl --with-gettext --with-pear --enable-calendar --enable-bcmath --enable-sockets --enable-mbstring --with-mcrypt --enable-fpm
如果是 PHP7(移除了 --with-mysql
的編譯參數(shù)袁梗,無需預(yù)先安裝好 MySQL,直接指定 mysqlnd 即可憔古,未測試 5.* 版本是否可以這樣編譯)
./configure --prefix=/usr/local/php --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv --with-jpeg-dir --with-png-dir --with-gd --with-freetype-dir --with-libxml-dir --with-openssl --with-mhash --with-zlib-dir --with-curl --with-gettext --with-pear --enable-calendar --enable-bcmath --enable-sockets --enable-mbstring --with-mcrypt --enable-fpm
發(fā)現(xiàn)缺了
再執(zhí)行上面的 ./configure
通過
接下來編譯安裝
make & make install
拷貝配置文件
cp php.ini-development /usr/local/php/lib/php.ini
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
最后往 /etc/profile 追加 PHP 的 bin sbin 兩個目錄路徑
vim /etc/profile
PATH=/usr/local/php/bin:/usr/local/php/sbin:$PATH
export PATH
source /etc/profile
查看 PHP 版本信息
php -v