PHP - Type Handling
Consider the following PHP code snippet:
Why does this code print "Empty"?
$var = null;
if (empty($var)) {
echo 'Empty';
} else {
echo 'Not Empty';
}
Why does this code print "Empty"?
