Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
$str = "Hello World"
echo wordwrap($str,5,"n");
?>
Answer : Option B
Explanation :
The wordwrap() function wraps a string into new lines when it reaches a specific length.
Be The First To Comment