使用preg_match检测字符串中的波斯语(波斯语)字符
2022-08-31 00:34:48
我正在尝试从服务器端验证表单数据。我的兴趣是用户只需用波斯字符填写表单即可。
我正在使用这个代码:
$name=trim($_POST['name']);
$name= mysql_real_escape_string($name);
if (preg_match('/^[\u0600-\u06FF]+$/',str_replace("\\\\","",$name))){$err.= "Please use Persian characters!";}
但它不起作用!
这是一个警告:
Warning: preg_match() [function.preg-match]: Compilation failed: PCRE does not support \L, \l, \N, \U, or \u at offset 3 in C:\xampp\htdocs\site\form.php on line 38
我该怎么办?