"/>
Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code ?

    <?php

    $a = '12345';

    echo "qwe$arty";

    ?>

  2. A.

     qwe12345rty

    B.

     qwe$arty

    C.

     qwe

    D.

     error

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    qwe, because $a became $arty, which is undefined.


Be The First To Comment