addding three dot after few characters php code example
Example 1: php ellipsis
$out = strlen($in) > 50 ? substr($in,0,50)."..." : $in;
Example 2: php trim string if longer than
substr($str,0,50);
$out = strlen($in) > 50 ? substr($in,0,50)."..." : $in;
substr($str,0,50);