Q. What will be the output of the following PHP code?
Code:
<?php
echo str_pad("Salad", 10)." is good.";
?>
β
Correct Answer: (A)
Interview was good.
<?php
echo str_pad("Salad", 10)." is good.";
?>
You must be Logged in to update hint/solution