Home » PHP » PHP Operators » Question
  1. What will be the output of the following PHP code ?
    <?php
    $m = 10; $n = 11; $s = 12;
    print !(( + + $m + $n) > ($n - $s));
    ?>
    1. 0
    2. 1
    3. Nothing
    4. Error
    5. None of these
Correct Option: C

The equation outputs false .



Your comments will be displayed only after manual approval.