首页 > 代码库 > 不重新编译php,增加动态模块(以mbstring模块为例)

不重新编译php,增加动态模块(以mbstring模块为例)

本文参考: http://blog.chinaunix.net/uid-366408-id-116428.html 

下载mbstring的源码包,php源码包里就有mbstring的源代码

解压php源码包,进入mbstring源码包
> cd /tmp/src/php-5.4.26/ext/mbstring/

开始安装第一步,--with-php-config指向的是php安装目录的php-config
> ./configure --with-php-config=/opt/software/php-5.4/bin/php-config

安装第二步
> make; make install

安装完成以后,mbstring.so文件就在php-config里指向的extension_dir里面
编辑php.ini文件,加入一行
extension=mbstring.so

重启apache服务器
> service httpd restart   

不重新编译php,增加动态模块(以mbstring模块为例)