🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
最新版本4.4.x git clone https://github.com/swoole/swoole-src.git cd swoole phpize ![](https://img.kancloud.cn/66/69/6669fd4e6a914850c218defcf40dd294_1148x240.png) 如果报这个错的话,就是没有安装autoconf 解决方案也简单 ~~~linux yum install autoconf ~~~ ~~~linux ./configure --with-php-config=/usr/bin/php-config ~~~ find / -name php-config查找php-config文件位置 ~~~ make && make install ~~~ 扩展是需要在php.ini中去配置一下才能生效的 ~~~ ;加入swoole扩展 extension=swoole ~~~