how to check how many letter in string php code example
Example 1: string length php
<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>
Example 2: php string length
$str = 'abcdef';
echo strlen($str); // 6