标签:php
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
标签:php
原文地址:http://blog.51cto.com/lavender7n/2052283