返回布尔值时的函数详细程度?

时间:2015-09-28 21:14:22

标签: php

考虑:

function something($x, $y)
{
   if($x == $y){
      return True; 
   }
}

如果段中的条件没有评估为true,那么php是否需要我 显式返回false?

示例:

$condition = something(1,3);
if(!$something){///}

如果像上面那样声明,$condition会评估为假吗?

0 个答案:

没有答案