3v4l.org

run code in 300+ PHP versions simultaneously
<?php function shorten($input, $length = 100, $end = '...') { if (mb_strlen($input) <= $length) { return $input; } return rtrim(mb_substr($input, 0, $length, 'UTF-8')) . $end; } print shorten('The quick brown fox jumped over the lazy dog', 15); // The quick brown...

preferences:
46.13 ms | 402 KiB | 5 Q