Answers for "ellipsis php"

PHP
2

php ellipsis

$out = strlen($in) > 50 ? substr($in,0,50)."..." : $in;
Posted by: Guest on July-02-2020

Browse Popular Code Answers by Language