我想检查文本框中的用户输入是否包含任何特殊字符。如何在不使用任何javascript / Jquery
的情况下验证文本框答案 0 :(得分: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
}