Home » PHP » PHP Operators » Question
  1. What will be the output of the following PHP code ?
    <?php
    $t = 21;
    if (**$t == 23)
    {
    echo $t;
    }
    ?>
    1. 21
    2. 23
    3. Error
    4. Nothing
    5. None of these
Correct Option: C

Error in line 3, The ** is not a valid operator,only ++ and — exist.



Your comments will be displayed only after manual approval.