Answers for "how to limit the length of a string in php"

PHP
1

php limit string length

if (strlen($str) > 10)
   $str = substr($str, 0, 7) . '...';
Posted by: Guest on July-17-2020

Code answers related to "how to limit the length of a string in php"

Browse Popular Code Answers by Language