我剛剛創建了一個網站,我想創建一個「搜索」模塊,數據庫已創建,並且我已連接,系統似乎正常工作,但此消息覆蓋了我的網頁:PHP錯誤信息:preg_match
PHP錯誤消息:
Warning: preg_match() [function.preg-match]: Compilation failed: unknown property name Effective \ P or \ p at
offset 7 in/home/a3637125/public_html/Moteur-de-recherche/class.inc/moteur-php5.class-inc.php on line 706
相關的代碼:
if(preg_match('#[\p{Xan}][^a-zA-Z]#iu', $mot)) {
$mot = str_ireplace($withaccent, $withnoaccent, htmlspecialchars(trim($mot)));
}
那麼你的正則表達式是壞的,但我不知道你想用它來實現 – Steve