标签:install php.ini bug span 命令 text command 执行 动态加载
安装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/#INST@79807#: Operation not permitted
重启,按command+R,在命令终端输入csrutil disable
3、在php.ini里添加上gettext.so
extension = "gettext.so"
标签:install php.ini bug span 命令 text command 执行 动态加载
原文地址:https://www.cnblogs.com/instar/p/10130628.html