how to count the length of a string in php code example
Example 1: how to check php string length
<?php
$name = 'abcdef';
echo strlen($str); // 6
$string = ' ab cd ';
echo strlen($str); // 7
?>
Example 2: php limit string length
if (strlen($str) > 10)
$str = substr($str, 0, 7) . '...';
Example 3: php string length
$str = 'abcdef';
echo strlen($str); // 6
Example 4: find string lenght in php
Use the PHP strlen() function