- Install ICU from source
wget http://download.icu-project.org/files/icu4c/56.1/icu4c-56_1-src.tgz tar -xzvf icu4c-56_1-src.tgz cd icu/source ./configure --prefix=/usr/local/icu make && make install@H_403_5@
- Install intl for PHP
wget http://pecl.PHP.net/get/intl-3.0.0.tgz tar -xzvf intl-3.0.0.tgz cd intl-3.0.0 PHPize ./configure –enable-intl –with-icu-dir=/usr/local/icu make && make install@H_403_5@then add the following line into PHP.ini
extension=intl.so@H_403_5@ 原文链接:https://www.f2er.com/centos/378936.html