Supported Versions: PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8
Wraps a string to a given number of characters
<?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);

    }