本篇文章给大家带来的内容是关于swoole模块的编译安装:php编译安装swoole模块的代码,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
1.下载swoole
1 wget https://github.com/swoole/swoole-src/archive/v1.9.3-stable.tar.gz
2.安装
找点phpize 和 php-config路径
[root@localhost swoole]# find / -name phpize find: ‘/proc/47018’: 没有那个文件或目录 /usr/bin/phpize /www/server/php/71/src/scripts/phpize /www/server/php/71/bin/phpize [root@localhost swoole]# find / -name php-config /www/server/php/71/src/scripts/php-config /www/server/php/71/bin/php-config [root@localhost swoole]# ./configure --with-php-config=/www/server/php/71/bin/php-config
上面是我的,具体按自己路径来
tar -xf v1.9.3-stable cd ./swoole-src-1.9.3-stable/ /opt/app/php5/bin/phpize ./configure --with-php-config=/opt/app/php5/bin/php-config make && make install
3.添加配置
1 vi /opt/app/php5/etc/php.ini 2 3 ... 4 extension=swoole.so 5 ...
4.重启php服务
1 service php-fpm restart
5.查看模块是否添加成功
1 php -m
相关推荐:
Atas ialah kandungan terperinci swoole模块的编译安装:php编译安装swoole模块的代码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!