为什么这个功能不起作用? Strlen,用于循环的数组

时间:2012-06-08 08:35:36

标签: php arrays strlen

此函数通过循环遍历字符数组并检查其中是否有任何字符与允许的字符列表不匹配来检查特殊字符。这个功能有什么问题?如果你能提供帮助,非常感谢!

假设str_split_array($ stringPassed);完美的工作(因为我99%确定它确实如此,我在各种其他功能中使用它)

    // returns true if a string has special characters
// $stringPassed = input string to split and check
// $checkWhiteSpace = check for whitespace, true or false
function hasSpecialCharacters($stringPassed, $checkWhiteSpace = true) {
    // Array of characters ALLOWED
    $allowedCharacters = array("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", 1, 2, 3, 4, 5, 6, 7, 8, 9, 0);
    $arrayLen = strlen($stringPassed);
    $array = str_split_array($stringPassed);
    for($i=0;$i<$arrayLen;$i++) {
        if(!in_array($array[$i], $allowedCharacters)) {
            return true;
        } else if($checkWhiteSpace==true && $array[$i]==" ") {
            return true;
        }
    }
    return false;
}

再次感谢!

2 个答案:

答案 0 :(得分:6)

更好的解决方案是Regex。

return (bool) preg_match("/[^0-9a-z".($allowWhiteSpace ? " ":"")."]/i", $stringPassed);

i使案例不敏感

更多关于Regex

我还将$checkWhiteSpace更改为$allowWhiteSpace以消除歧义。

答案 1 :(得分:0)

废弃该功能并改为使用preg_match,效率更高

function hasSpecialCharacters($stringPassed, $checkWhiteSpace = true)
{
    if($checkWhiteSpace)
    {
        $regex = "/^[a-z0-9 ]+$/" 
    }
    else
    {
        $regex = "/^[a-z0-9]+$/"
    }
    if(preg_match($regex, $stringPassed)
    {
        return true;
    }
    return false;
}

这是你应该熟悉的regex cheatsheet