在java中的漢字匹配是[u4E00-u9FA5],想當然的在PHP中使用這個正則後報瞭如下錯誤:
Warning: preg_match_all():Compilation failed: PCRE does not port Ldoes not, port Ldoes not, port Ldoes not, port Ldoes not, port L does not, port Ldoes not, {name}, U, or u at offset 6 in D:xampphtdocstestindex.php on line 7
後面發現在PHP中x是表示16進制的。於是還是會報如下錯:
Warning: preg_match_all(): Compilation failed: invalid UTF-8 string at offset 9 inD:xampphtdocstestindex.php on line 7版權聲明:本文為部落客原創文章,未經部落客允許不得轉載。看來又是正規表示式問題,最後用把正規改成[x{4E00}-x{9FA5}]就可以了。
以上就介紹了PHP匹配中文漢字,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。