安装准备
安装swoole前必须保证系统已经安装了下列软件
<code>php-5.3.10 // 或更高版本 gcc-4.4 //或更高版本 make autoconf</code>
安装swoole的PHP扩展
<code>wget https://github.com/swoole/swoole-src/archive/swoole-1.8.2-stable.tar.gz tar -zxvf swoole-1.8.2-stable cd swoole-src-swoole-1.8.2-stable/ /usr/local/php/bin/phpize ./configure make && make install</code>
配置php.ini
编译安装成功后,修改php.ini加入
<code>extension=swoole.so</code>
以上就介绍了安装swoole的PHP扩展,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。