1.安装php5

①下载解压源码包

cd /usr/local/src/ 

wget http://cn2.php.net/distributions/php-5.6.30.tar.gz 

tar zxf php-5.6.30.tar.gz

②编译安装php

./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php/etc  --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif

部分内容说明:

--prefix=/usr/local/php:安装目录

--with-apxs2=/usr/local/apache2.4/bin/apxs :自动将扩展模块放入modules目录内

--with-config-file-path=/usr/local/php/etc  :指定配置文件路径

--with-pdo-mysql=/usr/local/mysql:支付in个mysql相关的函数及驱动

③编译问题解决

configure过程中会中断数次,出现多次错误,原因基本上是库文件未安装,

因此需要不断安装文件再重新开始编译。


常见问题参考链接:

http://blog.sina.com.cn/s/blog_75a07c3b0101kcwb.html


2.安装php7

安装编译php7的过程与php5大同小异

①下载php7的源码包

cd /usr/local/src/ 

wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2 

tar zxf php-7.1.6.tar.bz2

②编译安装php7

./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php7/etc  --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif 

make && make install

上述编译过程相较于php5安装过程会顺利很多,因为php5安装过程中已经解决了很多包的安装问题。

在php7的编译选项中已经取消了--with-mysql=/usr/local/mysql这一部分,取而代之的是上述的加粗部分。

③拷贝配置文件

cp php.ini-production  /usr/local/php7/etc/php.ini