这是《2015年博客升级记》系列文章的第五篇,主要记录在Linux系统中如何编译安装PHP7。
1 创建php用户和用户组,并在github下载php7源码
首先创建一个名为php且没有登录权限
的用户和一个名为php的用户组,然后去GitHub下载php7源码包。
[root@typecodes ~]# groupadd -r php && useradd -r -g php -s /bin/false -d /usr/local/php7 -M php
######从GitHub下载php7安装包
[root@typecodes ~]# wget -c --no-check-certificate -O php7-src-master.zip https://github.com/php/php-src/archive/master.zip
######开始解压php7包
[root@typecodes ~]# unzip -q php7-src-master.zip && cd php-src-master
#####安装编译php7时需要的依赖包
[root@typecodes php-src-master]# yum -y install libxml2 libxml2-devel openssl openssl-devel curl-devel libjpeg-devel libpng-devel freetype-devel libmcrypt-devel
- 阅读剩余部分 -