<?php
$a = null;

if (!empty($a)) {
 echo "not empty";
} else {
 echo "empty";
}

?>
