swoole只能用在LInux,macos系統上,不能用作Windows系統上,Swoole 2.0正式版發布了。 2.0版本最大的更新是增加了對協程(Coroutine)的支援。正式版已同時支援PHP5和PHP7。
安裝方式一:pecl安裝 (建議學習: swoole視訊教學)#1111以上一樣2#7.0版本
centOS中:#pecl install swoole
解決:yum install php-devel php-pear
ubuntu中:#pecl install swoole
#pear clear-cache
#pear update-channels
#pear upgrade
適用於php5.3以上版本
centOS中:在這個網站http://pecl.php.net/package/swoole選擇適當的版本,我用的是1.10.5
#wget http://pecl.php.net/get/swoole-1.10.5.tgz #tar -zxvf swoole-1.10.5.tgz #cd swoole-1.10.5 #phpize #./configure #make #make install
在php.ini加入一行:extension=swoole. so
重啟apache,#systemctl restart httpd.service
透過php -m或phpinfo查看是否安裝成功
ubuntu中:報錯:沒有phpize
解決:#sudo apt-get install php5.6-dev //我的是php5.6
其他同centOS類似
#重啟apache,#/etc/init.d/apache2 restar
##
以上是swoole僅支援Linux系統嗎的詳細內容。更多資訊請關注PHP中文網其他相關文章!