php 安装扩展管理工具 pecl

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wanglei_storage/article/details/79391046

PECL 的全称是 The PHP Extension Community Library ,是一个开放的并通过 PEAR(PHP Extension and Application Repository,PHP 扩展和应用仓库)打包格式来打包安装的 PHP扩展库仓库。通过 PEAR 的 Package Manager 的安装管理方式,可以对 PECL 模块进行下载和安装。

curl -o go-pear.php http://pear.php.net/go-pear.phar
chmod +x go-pear.php
/usr/local/php-7.1.13/bin/php go-pear.php
pecl install mongodb
pecl install redis

猜你喜欢

转载自blog.csdn.net/wanglei_storage/article/details/79391046