时间:2021-07-01 10:21:17 帮助过:22人阅读
Warning: preg_match_all():Compilation failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 6 in D:\xampp\htdocs\test\index.php on line 7
后面发现在PHP中\x是表示16进制的。于是将正则改为[\x4E00-\x9FA5],但是还是会报如下错:
Warning: preg_match_all(): Compilation failed: invalid UTF-8 string at offset 9 in
D:\xampp\htdocs\test\index.php on line 7
看来又是正则表达式问题,最后用把正则改成[\x{4E00}-\x{9FA5}]就可以了。
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了PHP匹配中文汉字,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。