string chunk_split ( string $body [, int $chunklen = 76 [, string $end = “\r\n” ]] )
< ?php // format $data using RFC 2045 semantics $new_string = chunk_split(base64_encode($data)); ?>
string wordwrap ( string $str [, int $width = 75 [, string $break = “\n” [, bool $cut = false ]]] )
< ?php $text = "The quick brown fox jumped over the lazy dog."; $newtext = wordwrap($text, 20, "<br />\n");
echo $newtext;
?>