安装环境 centos7 、php7.2
wget https://pecl.php.net/get/swoole-4.8.9.tgz
tar zxvf swoole-4.8.9.tgz
cd swoole-4.8.9
phpize
Configuring for:
PHP Api Version: 20170718
Zend Module Api No: 20170718
Zend Extension Api No: 320170718
./configure
[root@localhost swoole-4.8.9]# ./configure
checking for grep that handles long lines and -e... /usr/bin/grep
...........
configure: error: Cannot find php-config. Please use --with-php-config=PATH
有错误:configure: error: Cannot find php-config. Please use --with-php-config=PATH
需要指定PHP的配置文件路径,重新进行配置
./configure --with-php-config=/www/server/php/72/bin/php-config
sudo make && sudo make install
安装完成后就有swoole.so文件,然后如果正常情况下它就已经在你那个php扩展的目录里面了
安装完成最后两句话会告诉你swoole.so文件所在目录
Installing shared extensions: /www/server/php/72/lib/php/extensions/no-debug-non-zts-20170718/Installing header files: /www/server/php/72/include/php/
编辑php.ini文件,然后在里面添加一行扩展开启
extension=swoole
输入命令 php --ri swoole ,如果输出了 Swoole 的扩展信息就说明你安装成功了!
来源地址:https://blog.csdn.net/ken2999/article/details/128685118