为什么这不起作用?
function test(){
if($id == 2) {$z = "hello";}
if($id == 3) {$z = "bye";}
return $z;
}
if(test() != "hello"){
echo "bye";
}
else
{
echo "hi";
}
如何检查正确返回的函数?
为什么这不起作用?
function test(){
if($id == 2) {$z = "hello";}
if($id == 3) {$z = "bye";}
return $z;
}
if(test() != "hello"){
echo "bye";
}
else
{
echo "hi";
}
如何检查正确返回的函数?