11月13日任务
11.10/11.11/11.12 安装PHP5
11.13 安装PHP7
php中mysql,mysqli,mysqlnd,pdo到底是什么 http://blog.csdn.net/u013785951/article/details/60876816
查看编译参数 http://ask.apelearn.com/question/1295
一、PHP5安装
1、PHP介绍
- PHP官网:www.php.net
- 目前主流版本为5.6或7.1版本
现在大部分企业都使用的是PHP5版本,PHP7是近几年才出的新版本,改动比较大,有些老的程序在PHP7中使用会出现问题,所以很多企业都还在使用PHP5。PHP7性能提升比较大,若果程序可以兼容PHP7那就使用PHP7
- 把PHP放在最后安装,是因为先要安装好Apache,安装好之后指定apxs2,否则无法自动安装它的模块
2、PHP安装
- 下载安装包
cd /usr/local/src
wget http://cn2.php.net/distributions/php-5.6.30.tar.gz
- 编译
tar -xvf php-5.6.30.tar.gz
cd php-5.6.30
./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 :指定apxs,它是apache的一个工具,它可以自动的帮你去把扩展的模块放到Apache中的modules目录里,并且在它的配置文件里加上一行load module。
--with-config-file-path=/usr/local/php/etc :指定配置文件路径
--with-mysql=/usr/local/mysql :指定mysql的路径
--with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config : mysql的驱动
--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 : 通用参数,没有特殊要求就默认即可
- 安装缺少的包
yum install openssl openssl-devel
yum install bzip2-devel.x86_64
yum install libpng-devel
yum -y install libjpeg-devel
yum install freetype-devel
yum install -y epel-release
yum install -y libmcrypt-devel
yum -y install ncurses-devel
- 安装
make && make install