在某些情况下,array_search() 返回的键是 0 或 1。当我在 if 语句中使用此返回值时,php 将其解释为布尔值。但我希望将其解释为字符串。我怎样才能做到这一点?
例子:
$array=array('abc','a','b');
$returnvalue=array_search('abc',$array); // will be 0
if($returnvalue!=false){
statement // right now, this will not be executed
}
非常感谢你的帮助!