本文主要是介绍pecl命令安装php扩展,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用pecl命令,安装php扩展。
使用场景:安装swoole扩展。
命令:
# 安装
pecl install https://pecl.php.net/get/swoole-2.1.3.tgz# 卸载
pecl uninstall swoole
pecl install 后面可以输入扩展的链接,用于指定版本安装。
查看扩展列表:
https://pecl.php.net/package/swoole
这篇关于pecl命令安装php扩展的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!