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

Discussion :: PHP - CS

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

    <?php

    echo str_pad("Salad", 5)." is good.";

    ?>

  2. A.

     SaladSaladSaladSaladSalad is good

    B.

     is good SaladSaladSaladSaladSalad

    C.

     is good Salad

    D.

     Salad is good

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    The str_pad() function pads a string with a specified number of characters.


Be The First To Comment