Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
echo $x-- != ++$x;
?>
Answer : Option A
Explanation :
Automatically x is declared and initialized to 0,then decremented and compared with its increments, thus returns 1.
Be The First To Comment