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

Discussion :: PHP - CS

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

    <?php

    $username = "jasoN";

    if (ereg("([^a-z])",$username))

    echo "Username must be all lowercase!";

    else

    echo "Username is all lowercase!";

    ?>

  2. A.

     Error

    B.

     Username must be all lowercase!

    C.

     Username is all lowercase!

    D.

     No Output is returned

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Because the provided username is not all lowercase, ereg() will not return FALSE (instead returning the length of the matched string, which PHP will treat as TRUE), causing the message to output.


Be The First To Comment