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

Discussion :: PHP - CS

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

    <?php

    $line = "You like dogs. I hate dogs. We should marry."

    $sen = preg_split('/./', $line);

    print_r($sen);

    ?>

  2. A.

     You like dogs. I hate dogs. We should marry.

    B.

     Array([0]=>You like dogs. I hate dogs. We should marry.)

    C.

     Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.)

    D.

     Error

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    We use a ‘.’ period to split the data, therefor giving each sentence it’s own array entry.


Be The First To Comment