PHP WordWrap bezieht eine Zeichenfolge in eine bestimmte Anzahl von Zeichen

<?php
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap($text, 20, "<br />\n");

echo $newtext;
?>
SAMER SAEID