使用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

我该怎么办?


答案 1

这个“应该”工作...

** 在开头后添加了一个 ^ [ 从匹配中排除阿拉伯语/波斯语字符...

if (preg_match('/^[^\x{600}-\x{6FF}]+$/u', str_replace("\\\\","",$name)))

答案 2

http://utf8-chartable.de/unicode-utf8-table.pl?start=1536&number=1024&utf8=0x&addlinks=1&htmlent=1

600 - 6FF 系列

仅 fa:

preg_match('/^[پچجحخهعغفقثصضشسیبلاتنمکگوئدذرزطظژؤإأءًٌٍَُِّ\s]+$/u', $input);

en , en-num 和 fa 字符:

 preg_match('/^([a-zA-Z0-9 پچجحخهعغفقثصضشسیبلاتنمکگوئدذرزطظژؤإأءًٌٍَُِّ])+$/u', $input);

您可以设置 fa 数字或阿拉伯语 ي ك


推荐