Home >Backend Development >PHP Tutorial >PHP扩展安装之PECL

PHP扩展安装之PECL

WBOY
WBOYOriginal
2016-06-23 13:58:401254browse

1. PECL简介


PECL:The PHP Extension Community Library是php的扩展库。

用于PHP的扩展的下载和安装。


在安装php时,pecl会默认安装,在bin目录下。


2. 使用参数


使用参数同pear一样。
http://blog.csdn.net/yonggang7/article/details/23621501

$ ./pecl

3. pecl安装扩展


比如安装memcache扩展

$ ./pecl install memcache
安装成功后会在php的extension目录下生成memcache.so文件。

然后将"extension=memcache.so"添加在php.ini文件中。

查看是否正常加载:

$ ./php -m 
该命令用来展示所有的php扩展。

  

4. pecl的所有扩展


扩展列表:

http://pecl.php.net/packages.php



From: http://blog.csdn.net/yonggang7/article/details/24096593


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:提交后获取不到值Next article:PHP 超强过滤函数