编译安装 swoole
下载
cd swoole-src-master
/usr/local/php/bin/phpize # phpize的目录
./configure --with-php-config=/usr/local/php/bin/php-config #编译
make && make install 安装
在php.ini文件中添加 extension=swoole.so
重启php /etc/init.d/php-fpm stop /etc/init.d/php-fpm start
使用
下载swoole_framework源码,放置到您的workspace目录中即可。swoole_framework是PHP代码,只需要require/include即可,无需编译和安装。
https://github.com/swoole/framework