PECL與phpize

科技小能手發表於2017-11-14

PECL 的全稱是 The PHP Extension Community Library ,是一個開放的並通過 PEAR(PHP Extension and Application Repository,PHP 擴充套件和應用倉庫)打包格式來打包安裝的 PHP 擴充套件庫倉庫。

phpize 命令是用來準備 PHP 擴充套件庫的編譯環境的,有了這個工具不必為了一個想要的模組,而重新編譯php了!

 

例子:為php增加openssl.so模組

1 使用 phpize


  1. cd php-5.2.6/ext/openssl/
  2.  
  3. /usr/local/php/bin/phpize

    Configuring for:

    PHP Api Version: 20041225

    Zend Module Api No: 20060613

    Zend Extension Api No: 220060519


     
  4. ./configure –with-openssl –with-php-config=/usr/local/php/bin/php-config 
  5. make && make install 
  6. installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/

2 得到openssl.so 檔案


  1. file /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/openssl.so  
  2. /usr/.省略./openssl.so: ELF 64-bit LSB shared object, AMD x86-64, version 1 (SYSV), not stripped 

3 編輯php.in配置文件


  1. 在php.ini內加入以下內容: 
  2. extension_dir = “/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/” 
  3. extension = “openssl.so” 

4 重啟apache


  1. /usr/local/apache/bin/apachectl restart 

5 驗證


  1. # /usr/local/php/bin/php -m | grep `openssl` 
  2. openssl 

 

#update 20130216 pdo-mysql


  1. ./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


相關文章