使用正則表達式阿拉伯字母我如何能匹配正則表達式阿拉伯字母在PHP我如何能匹配PHP
我的代碼
$name = $_GET("name");
if (arabic letters only and spaces) // using regexp
使用正則表達式阿拉伯字母我如何能匹配正則表達式阿拉伯字母在PHP我如何能匹配PHP
我的代碼
$name = $_GET("name");
if (arabic letters only and spaces) // using regexp
我認爲你的答案就在這裏: Check the language of string based on glyphs in PHP
if(preg_match("/\p{Arabic}/u", $name])) {
echo 'valid';
}
您可能會發現http://alex-csed.blogspot.com/2010/03/tutorial-validating-users-arabic-input.html是相關的。 – Brian 2010-11-10 14:57:19