Examveda
Examveda

What will be the output of the following PHP code?
<?php
$str = "Hello World"
echo wordwrap($str,5,"n");    
?>

A. Hello World

B. Hello
World

C. Hell 0 Wo rld

D. World

Answer: Option B

Solution(By Examveda Team)

The wordwrap() function wraps a string into new lines when it reaches a specific length.

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions