Examveda
Examveda

What will be the output of the following PHP code?
<?php
echo str_pad("Salad", 5)." is good.";
?>

A. SaladSaladSaladSaladSalad is good

B. is good SaladSaladSaladSaladSalad

C. is good Salad

D. Salad is good

Answer: Option D

Solution(By Examveda Team)

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

This Question Belongs to PHP >> Regular Expressions

Join The Discussion

Related Questions on Regular Expressions