What will be the output of the following PHP code?
<?php
$str = "Hello World"
echo wordwrap($str,5,"n");
?>
<?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
Join The Discussion