通过 pear 在命令行编译安装 swoole 扩展


通过 pear 安装 swoole 扩展:

cd /tmp/
wget http://pecl.php.net/get/swoole-4.3.0.tgz
tar zxvf swoole-4.3.0.tgz
cd swoole-4.3.0 && /www/server/php/71/bin/phpize
./configure --enable-openssl --with-php-config=/www/server/php/71/bin/php-config && make && make install

查看 swoole 版本:

php --ri swoole

点赞 取消点赞 收藏 取消收藏

<< 上一篇: Leetcode基础刷题之PHP解析(130. Surrounded Regions)

>> 下一篇: Leetcode PHP题解--D116 409. Longest Palindrome