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