Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    $str = "Hello! My name is Cameron Fox. Coffee?"

    $find = array('/is/','/coffee/');

    $replace = array('/was/','/tea/');

    echo preg_replace ($find, $replace, $str);

    ?>

  2. A.

     Hello! My name was Cameron Fox. tea?

    B.

     Hello! My name is Cameron Fox. tea?

    C.

     Hello! My name is Cameron Fox. Coffee?

    D.

     Hello! My name was Cameron Fox. Coffee?

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    Coffee was not replaced because the preg_replace function is case sensitive. Therefore it treats coffee and Coffee differently.


Be The First To Comment