为什么使用if
语句来确定函数是否应该返回 true 或 false 不起作用?True 有效,但 false 无效。
这是我的代码:
function test($var){
if($var == "string"){
return true;
}else{
return false;
}
}
做:
按应有的方式echo test("string");
返回,true
但使用echo test("hello");
应该返回false
,但什么也不返回,为什么?
应该使用什么来代替返回 true/false 与标准?