<?php wordwrap( string $string, int $width = 75, string $break = "\n", bool $cut_long_words = false): string
<?php public static function wordWrap($string, $characters = 75, $break = "\n", $cutLongWords = false) { return wordwrap($string, $characters, $break, $cutLongWords); }