2010-11-10 67 views
3

使用正則表達式阿拉伯字母我如何能匹配正則表達式阿拉伯字母在PHP我如何能匹配PHP

我的代碼

$name = $_GET("name"); 

if (arabic letters only and spaces) // using regexp 
+0

您可能會發現http://alex-csed.blogspot.com/2010/03/tutorial-validating-users-arabic-input.html是相關的。 – Brian 2010-11-10 14:57:19

回答

9

我認爲你的答案就在這裏: Check the language of string based on glyphs in PHP

if(preg_match("/\p{Arabic}/u", $name])) { 
echo 'valid'; 
} 
+0

謝謝。如何添加阿拉伯文到^ [a-zA-Z] {1}([a-zA-Z0-9] | \ s(?!\ s)){4,14} [^ \ s] $ – faressoft 2010-11-10 15:03:52

+0

Perfecto .. !!你是我的英雄:D – Ali 2016-02-26 12:58:04