我正在构建一个简单的验证系统,如果字符串的字符超出可接受范围,则该系统会对其进行标记。我希望使用一些模式匹配功能来做到这一点......
// if data contains anything that is not [A-Z][a-z] or [0-9] the function returns false or an exception
preg_flag_bad_data("[A-Z][a-z][0-9]",$data)
我正在构建一个简单的验证系统,如果字符串的字符超出可接受范围,则该系统会对其进行标记。我希望使用一些模式匹配功能来做到这一点......
// if data contains anything that is not [A-Z][a-z] or [0-9] the function returns false or an exception
preg_flag_bad_data("[A-Z][a-z][0-9]",$data)