Prevent strings from growing to long and breaking the layout.
trimlink( string $text, int $length ) : string
$text (string) (Required) String to trim.
$length (int) (Required) Max length of the string.
(string) String trimmed to the given length.
$text = 'The big brown fox jumped over the lazy dog';
echo trimlink($text, 10);
// The big...