一、源码安装php7步骤
1.下载php7源码,地址链接 http://php.net/get/php-7.2.7.tar.bz2/from/a/mirror
2.解压
tar -zjvf 包名
3.执行./configure命令,先要安装gcc和libxml2-devel
./configure --prefix=/home/work/study/soft/php(指定安装目录)
4.make & makeinstall
5.查看php的扩展
/home/work/study/soft/php/bin/php -m
6.设置别名
vim .bash_profile(在家目录下面)
添加alise php=/home/work/study/soft/php/bin/php
source .bash_profile 使文件生效
7.源码安装的坑
php.ini 文件是在解压的源码包中,php.ini-development和php.ini-production,移动到安装目录
mv php.ini.development /home/work/study/soft/php/bin/php/etc/ 错误的位置
查看配置文件php.ini
php -i | grep php.ini
Loaded Configuration File => /home/work/study/soft/php/lib/php.in
把etc/php.ini 移动到/home/work/study/soft/php/lib/下面
二、swoole扩展安装
1.swoole 源码下载
git clone https://gitee.com/swoole/swoole.git
2.执行phpize命令生成configure文件
其中的坑:先要安装yum install autoconf 才会生成configure文件
安装好autoconf后 执行phpize /home/work/study/soft/php/bin/phpize 会生成configure文件
3.执行configure命令
<b>用于configure 编译需要gcc 安装gcc yum install gcc-c++</b>
./configure --with-php-config=/home/work/study/soft/php/bin/php-config
4.make & make install
5.在php.ini中添加swoole模块
extension=swoole
6.php -m 查看扩展是否安装好
7.参考文档https://blog.csdn.net/zimuxin/article/details/80019728