hi very short question can php return a boolean like this:
return $aantal == 0;
gibi java yapabilirsiniz
public boolean test(int i)
{
return i==0;
}
or do you Have to use a if contruction? because if i do this.
$foutLoos = checkFoutloos($aantal);
function checkFoutloos($aantal)
{
return $aantal == 0;
}
echo "foutLoos = $foutLoos";
IT'S echo
foutLoos =
çok doğru ya da yanlış değil
thanks matthy