在 XAMPP 上安装 Php-intl:解决 Mac 用户面临的挑战
在 Mac 上使用 XAMPP 时,Php-intl 扩展变得至关重要适用于各种应用程序,包括composer和cakephp。用户在安装此扩展时可能会遇到困难,导致无法启动需要它的命令等错误。
分步安装指南
成功安装 Php-intl 扩展,请按照以下步骤操作:
which php
如果输出是 /Applications/XAMPP/xamppfiles/bin/php,则继续执行后续步骤。但是,如果是 /usr/bin/php,请使用以下命令修改系统 PHP 路径:
PATH="/Applications/XAMPP/xamppfiles/bin:${PATH}"
brew install icu4c
sudo pecl update-channels sudo pecl install intl
php -m | grep intl #should return 'intl'
附加说明
brew install autoconf automake
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-latest.tar.gz tar xzf autoconf-latest.tar.gz cd autoconf-* ./configure --prefix=/usr/local make sudo make install cd .. rm -r autoconf-*
以上是Mac 用户如何在 XAMPP 上成功安装 Php-intl?的详细内容。更多信息请关注PHP中文网其他相关文章!