php 通过 pecl 安装 swoole 扩展

简介

Pecl 全称 The PHP Extension Community Library,php 社区扩展库,由社区编写,维护。使用 pecl 方便之处在于我们不用到处找源码包下载编译,配置,不用手动 phpize,configure,make,make install, 自动识别模块安装路径,我们只需要编辑 php.ini 配置文件开启扩展,当然我们也需要自己配置一些参数的时候可以先下载源码再构建

安装 pecl

  • Ubuntu/Debian/Deepin
sudo apt-get install php-dev php-pear autoconf automake libtool  -y 
  • Centos
sudo yum install php-dev php-pear autoconf automake libtool  -y 

pecl 常用命令

  • build 
    从 C 的源码中构建扩展
  • install 
    安装一个包,步骤包含 (configure,make,make install)
  • download 
    下载源码包
  • list-all 
    列出全部包
  • run-tests 
    运行测试 (make test)

安装 Swoole 扩展

sudo pecl install swoole

配置 PHP.ini

php -i |grep php.ini(查看php.ini位置)
extension=swoole.so(写入php.ini文件中)

确认是否安装成功

 php -m | grep swoole

如果安装成功,会输出 swoole


你可能感兴趣的:(php 通过 pecl 安装 swoole 扩展)