一,phpize的好處
什么時候我們要用phpize呢?我們在安裝php時:
'./configure' '--prefix=/usr/local/php' '--with-mysql=/usr/local/mysql' '--with-zlib-dir' '--with-freetype-dir=/usr' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--with-gd' '--enable-ftp' '--with-iconv' '--with-gettext' '--with-curl' '--enable-fastcgi' '--with-openssl'
后面根的參數是我們要的模塊,但是隨著工作的需要,我們還要在加些模塊,又不想重新編譯php,這些我們就可以用phpize了。
?
二,安裝php模塊
下面我以soap安裝為例子
cd /home/tmp/php-5.2.6/ext/soap??????????????? #ext目錄下面放的是php的模塊庫
/usr/local/php/bin/phpize
#確定php-config文件在不在,調用php-config,安裝后.so文件會自動放到extension_dir里面
./configure --enable-soap? --with-php-config=/usr/local/php/bin/php-config
make && make install
安裝完后會有這樣的東西
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
Build complete.
Don't forget to run 'make test'.
Installing shared extensions:???? usr/local/php/lib/php/extensions/no-debug-non-zts-20140613/
三,查看.so文件,以及修改php.ini
cd /usr/local/php/lib/php/extensions/no-debug-non-zts-20140613/
ls -al |grep soap
-rwxr-xr-x 1 root? root?? 763334 Feb? 9 10:51 soap.so
vi /etc/php.ini
extension_dir="usr/local/php/lib/php/extensions/no-debug-non-zts-20140613/"
extension=soap.so
四,重起apache或者phpcgi或者其他