在使用PHP pcre_match时遇到错误:
1 | Compilation failed: this version of PCRE is not compiled with PCRE_UTF8 support at offset 0 |
1 2 | pcretest -C Compiled with UTF-8 not support |
下载对应版本src rpm重新编译pcre:
1 2 3 | yum install rpm-build wget http: //vault .centos.org /6 .4 /os/Source/SPackages/pcre-7 .8-6.el6.src.rpm rpmbuild --rebuild --with enable -utf8 pcre-7.8-6.el6.src.rpm |
重新安装编译的软件包:
1 | rpm -iv --replacepkgs /root/rpmbuild/RPMS/i386/pcre-7 .8-6.el6.i386.rpm |
标签:none