limit string length php code example Example: php limit string length if (strlen($str) > 10) $str = substr($str, 0, 7) . '...';