可以在PHP返回這樣一個布爾值:在java中
return $aantal == 0;
像您可以
public boolean test(int i)
{
return i==0;
}
或者你有一個,如果敷設渠道使用? 因爲如果我這樣做。
$foutLoos = checkFoutloos($aantal);
function checkFoutloos($aantal)
{
return $aantal == 0;
}
echo "foutLoos = $foutLoos";
它呼應的
foutLoos =
所以不是真或假
感謝 matthy
只是補充,每當你在做比較(使用任何比較操作符),其結果將是布爾。如果你不確定,只需使用cast來確保它是布爾型的。 'return(bool)($ aantal == 0);' – mauris 2009-11-08 22:48:37