-3

我想检查文本框中的用户输入是否不包含任何特殊字符。如何在不使用任何 javascript/Jquery 的情况下验证文本框

4

1 回答 1

1

试试这个,$name是用户输入,

if(preg_match('/[^a-z0-9 _]+/i', $name)) {
// preg_match will return true if it finds 
// a character *other than* a-z, 0-9, space and _
// *anywhere* inside the string
}
于 2013-09-20T06:08:49.677 回答