Answers for "how to add ... after 30 words in php"

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 "how to add ... after 30 words in php"

Browse Popular Code Answers by Language