-
What will be the output of the following PHP code?
<?php
$string = "keep practicing at interviewmania";
echo wordwrap($string, 15, "\n");
?>
-
- keep practicing at
- interviewmania
- keep practicing
at
interviewmania - Error
- None of these
Correct Option: C
The wordwrap() function wraps a string into new lines when it reaches a specific length.