Answers for "show dot when text length is greater that 50 characters"

PHP
2

php ellipsis

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

php trim string if longer than

substr($str,0,50);
Posted by: Guest on January-30-2020

Code answers related to "show dot when text length is greater that 50 characters"

Browse Popular Code Answers by Language