$text = "supercalafragilisticexpealadocious is a very long word";
$newtext = wordwrap($text, 18, "<br />\n");
echo $newtext;
This returns the following.
supercalafragilisticexpealadocious<br />
is a very long<br />
word
Notice how the first word is longer than the specified maximum of 18 characters, but is not broken. This default behavior can be turned off by specifying an optional 4th parameter as follows:
$text = "supercalafragilisticexpealadocious is a very long word";
$newtext = wordwrap($text, 18, "<br />\n",true);
echo $newtext;
This forces any word longer than the 18-character maximum to break at 18 characters:
supercalafragilist<br />
icexpealadocious<br />
is a very long<br />
word
No comments:
Post a Comment