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 ユーザー向けに Php-intl を XAMPP に正常にインストールするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。