Hard
What will this code display?
<?php
$x= 0;
if(empty($x)){
echo 'A';
}
if(is_null($x)){
echo 'B';
}
if(isset($x)){
echo 'C';
}
if($x){
echo 'D';
}
Author: Julien BreuxStatus: PublishedQuestion passed 1127 times
Edit