通过源码包php-5.4.9.tar.gz编译安装PHP之后,如何加载动态模块,不需要重新配置PHP
例如 安装 bcmath 模块
# cd /home/guanli/php-5.4.9/ext
# cd openssl
#mv vonfig0.m4 config.m4
# cd -
# cd bcmath
# /var/lib/php5/bin/phpize
此时提示错误:
Configuring for:
PHP Api Version: 20100412
Zend Module Api No: 20100525
Zend Extension Api No: 220100525
Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable. Then, rerun this script.
# yum install autoconf
#/var/lib/php5/bin/phpize
# ./configure --with-php-config=/var/lib/php5/bin/php-config
# make
# make test
# make install
执行完之后,会自动提示我们将bcmath.so模块加入到路径:/var/lib/php5/lib/php/extensions/no-debug-non-zts-20100525下面
接下来,在php.ini中设置扩展目录:
如果编译PHP的时候没有指定配置文件的位置,默认的php.ini应该被放到/var/lib/php5/lib下面才能被加载,其它地方已经谈到过了。
我们找到 ; extension_dir = "./",取消前面的注释,并改为:
extension_dir = "/var/lib/php5/lib/php/extensions/no-debug-non-zts-20100525"
再次添加扩展模块引用
extension = bcmath.so
到此,重启httpd服务,通过 phpinfo() 去验证,已经成功加载 bcmath 模块。
上一篇: 刚开始学php 一下
下一篇: 怎么把单个和双个和在一起呀?