php动态加载模块gettext
Posted instar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php动态加载模块gettext相关的知识,希望对你有一定的参考价值。
安装php的模块有两种方式:
一、重新编译php,加上--with-gettext
二、动态安装
1、下载同版本的php原包,解压后进入ext目录,目录下便是模块
2、进入gettext目录下执行:
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install
MAC安装时如遇到如下错误:
Installing shared extensions: /usr/lib/php/extensions/no-debug-non-zts-20131226/
cp: /usr/lib/php/extensions/no-debug-non-zts-20131226/#[email protected]#: Operation not permitted
重启,按command+R,在命令终端输入csrutil disable
3、在php.ini里添加上gettext.so
extension = "gettext.so"
以上是关于php动态加载模块gettext的主要内容,如果未能解决你的问题,请参考以下文章