我有一个函数isNotEmpty,如果字符串不是空的,返回true,如果字符串是空的,返回false。我发现,如果我传递一个空字符串,它是不工作的。

function isNotEmpty($input) 
{
    $strTemp = $input;
    $strTemp = trim($strTemp);

    if(strTemp != '') //Also tried this "if(strlen($strTemp) > 0)"
    {
         return true;
    }

    return false;
}

使用isNotEmpty对字符串进行验证:

if(isNotEmpty($userinput['phoneNumber']))
{
    //validate the phone number
}
else
{
    echo "Phone number not entered<br/>";
}

如果字符串是空的,否则不执行,我不明白为什么,有人能解释一下吗?


当前回答

这里有一个简短的方法来检查字符串是否为空。

$input; //Assuming to be the string


if(strlen($input)==0){
return false;//if the string is empty
}
else{
return true; //if the string is not empty
}

其他回答

我只是写了自己的函数,is_string用于类型检查,strlen用于检查长度。

function emptyStr($str) {
    return is_string($str) && strlen($str) === 0;
}

print emptyStr('') ? "empty" : "not empty";
// empty

这是一个小测试

EDIT:你也可以使用trim函数来测试字符串是否为空。

is_string($str) && strlen(trim($str)) === 0;    

这里有一个简短的方法来检查字符串是否为空。

$input; //Assuming to be the string


if(strlen($input)==0){
return false;//if the string is empty
}
else{
return true; //if the string is not empty
}

我总是使用正则表达式来检查空字符串,可以追溯到CGI/Perl的日子,也与Javascript,所以为什么不与PHP以及,例如(尽管未经测试)

return preg_match('/\S/', $input);

其中\S代表任何非空白字符

其实很简单。变化:

if (strTemp != '')

to

if ($strTemp != '')

你可能还想把它改成:

if ($strTemp !== '')

因为!= "如果你传递的是数字0和其他一些情况下由于PHP的自动类型转换将返回true。

你不应该为此使用内置的empty()函数;参见注释和PHP类型比较表。

这是一个简短而有效的解决方案,正是你正在寻找的:

return $input > null ? 'not empty' : 'empty' ;