PECL 的全称是 The PHP Extension Community Library ,是一个开放的并通过 PEAR(PHP Extension and Application Repository,PHP 扩展和应用仓库)打包格式来打包安装的 PHP 扩展库仓库。
phpize 命令是用来准备 PHP 扩展库的编译环境的,有了这个工具不必为了一个想要的模块,而重新编译php了!
例子:为php增加openssl.so模块
1 使用 phpize
- cd php-5.2.6/ext/openssl/
- /usr/local/php/bin/phpize
Configuring for:
PHP Api Version: 20041225
Zend Module Api No: 20060613
Zend Extension Api No: 220060519
- ./configure --with-openssl --with-php-config=/usr/local/php/bin/php-config
- make && make install
- installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/
2 得到openssl.so 文件
- file /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/openssl.so
- /usr/.省略./openssl.so: ELF 64-bit LSB shared object, AMD x86-64, version 1 (SYSV), not stripped
3 编辑php.in配置文档
- 在php.ini内加入以下内容:
- extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/"
- extension = "openssl.so"
4 重启apache
- /usr/local/apache/bin/apachectl restart
5 验证
- # /usr/local/php/bin/php -m | grep 'openssl'
- openssl
#update 20130216 pdo-mysql
- ./configure --with-pdo-mysql=/usr/local/mysql/ --with-php-config=/usr/local/php/bin/php-config
参考
http://www.php.net/manual/zh/install.pecl.intro.php
http://www.ibm.com/developerworks/cn/opensource/os-cn-php-pecl/index.html
结束
本文转自 dongnan 51CTO博客,原文链接:http://blog.51cto.com/dngood/813607