Source Code:
(back to article)
<?php $text = "This is a long piece of text that needs to be wrapped."; $wrapped_text = wordwrap($text, 20, "\n"); echo $wrapped_text;
Result:
Report an issue