Hard
What will this code display?
<?php
$x= null;
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 1103 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!