PHP - Type Handling
Find the bug in this PHP code:
$var = '';
if (is_null($var)) {
echo 'Null';
} else {
echo 'Not Null';
}
$var = '';
if (is_null($var)) {
echo 'Null';
} else {
echo 'Not Null';
}
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions