phpsize动态编译php模块

php官方说明:

phpize是用来扩展php扩展模块的,通过phpize可以建立php的外挂模块

比如你想在原来编译好的php中加入memcached或者ImageMagick等扩展模块,可以使用phpize,通过以下几步工作。


php使用说明:

当php编译完成后,php的bin目录下会有phpize这个脚本文件。在编译你要添加的扩展模块之前,执行以下phpize就可以了;

[root@ ~]cd /usr/local/src/php/php-5.3.0

[root@localhost php-5.3.0]# /usr/local/php5/bin/phpize   //脚本文件,目的是搭建动态模块的环境,该命令一定要使用在php的模块文件夹主目录下,这里报错Cannot find config.m4。因为phpize要根据模块生成模块的配置文件放在模块文件夹下面 

Make sure that you run '/usr/local/php5/bin/phpize' in the top level source directory of the module    所以我们先

[root@localhost php-5.3.0]# cd ext/mbstring/

[root@localhost mbstring]# /usr/local/php5/bin/phpize

[root@localhost mbstring]# ./configure --with-php-config=/usr/local/php5/bin/php-config 注意:在没有在模块根文件夹下执行'/usr/local/php5/bin/phpize的话是没有configure配置文件的!配置如果不报错就继续

[root@localhost mbstring]# make

[root@localhost mbstring]# make install

[root@localhost mbstring]# ll /usr/local/php5/lib/php/extensions/no-debug-zts-20090626/

-rwxr-xr-x 1 root root 2760042 Aug 12 01:57 mbstring.so

此时我们发现mbstring.so已经copy到php默认的扩展文件夹里了,好了,马上要大功告成了,现在在php.ini里添加对mbstring.so的支持

[root@localhost mbstring]# vi /usr/local/php5/lib/php.ini

增加extension=mbstring.so,好了php设置完成,现在重启web就行了

[root@localhost mbstring]# /home/service/http/apache2/bin/apachectl restart

查看phpinfo可以看到支持mbstring了

你可能感兴趣的:(PHP,职场,动态编译,休闲,phpsize)