swoole下载地址 : http://www.swoole.com/
安装教程:
//解压
tar -zxvf swoole-src-1.9.0-stable.tar.gz
cd swoole-src-1.9.0-stable
/usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config
./configure --enable-async-mysql --with-php-config=/usr/local/php/bin/php-config
make
make install
编辑php.ini文件:
vim /usr/local/php/etc/php.ini
extension=swoole.so
//查看扩展是否存在
php -m | grep swoole