calculate length of string in php code example
Example 1: php string length
<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>
Example 2: find string lenght in php
Use the PHP strlen() function
<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>
Use the PHP strlen() function