安装php扩展服务:
wget -O php7.tar.gz http://cn2.php.net/get/php-7.1.1.tar.gz/from/this/mirror tar -xf php7.tar.gz cd php-7.1.1 yum install -y epel-release yum install -y libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel ./configure --prefix=/usr/local/php/php7 --with-config-file-path=/usr/local/php/php7/etc --enable-fpm --disable-debug --disable-rpath --enable-shared --with-iconv --enable-ftp make && make install vim /etc/profile #加上这句话 export PATH=$PATH:/usr/local/php/php7/bin/ source /etc/profile ls /usr/local/php ls /usr/local/php/php7 php -v
就是这样就安装好了
如果数据库安装好了,那么使用下面的编译
./configure --prefix=/usr/local/php/php7 --with-config-file-path=/usr/local/php/php7/etc --with-mysqli=/usr/local/mysql5.6/bin/mysql_config --with-pdo-mysql=/usr/local/mysql5.6 -enable-mbstring --enable-ftp --enable-fpm --with-curl --with-mhash --enable-zip --with-pcre-regex --with-gd --with-jpeg-dir -with-gettext --enable-xml
如果还需要其他操作 ,请使用 ./configure --help
如果需要安装7.2版本的话,这里还可以下载
这篇文章是更新过后的,为什么我会再次来更新这篇文章?
最近在学习高性能开发、网络编程、使用到 php的消息队列 、管道、共享内存 以及 信号量 的东西,这是我之前安装PHP没有的东西,因此,再次编译安装一下。
我之前的版本是 7.1 现在最新版的已经是7.2了。现在就来安装最新版的吧。
好的,下面我们就来进行安装
注意一下几个选项,是我必须要开启的
1、开启消息队列 --enable-sysvmsg
2、开启信号量 --enable-sysvsem
3、开启共享内存 --enable-sysvshm
4、开启pcntl --enable-pcntl
看下面的安装步骤吧:
下载安装文件,并解压
./configure --prefix=/usr/local/php/php7 --with-config-file-path=/usr/local/php/php7/etc --with-mysqli=/usr/local/mysql5.6/bin/mysql_config --with-pdo-mysql=/usr/local/mysql5.6 -enable-mbstring --enable-ftp --enable-fpm --with-curl --with-mhash --enable-zip --with-pcre-regex --with-gd --with-jpeg-dir -with-gettext --enable-xml --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-pcntl
编译文件,然后执行 make && make install
等待执行结束。
再次修改一下环境变量
vim /etc/profile #加上这句话 export PATH=$PATH:/usr/local/php/php7/bin/ source /etc/profile ls /usr/local/php ls /usr/local/php/php7 php -v
=============================================================================
php5.6
./configure --prefix=/usr/local/php/php5.6 --with-config-file-path=/usr/local/php/php5.6/etc --enable-fpm --disable-debug --disable-rpath --enable-shared --with-iconv --enable-ftp