例如我可能:
$exclude_values = ['/','.'];
$check_string = 'asdf/';
$return = 'VALID';
foreach($exclude_values as $value)
{
if(strpos($value,$check_string) != FALSE)
{
$return = 'INVALID';
}
}
return $return;
有更好的方法吗? 我已经看到了堆栈上的单个检查的例子,而不是多个值