strlength php code example
Example 1: string length php
<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>
Example 2: strlen php
<?php
echo strlen("Hello world!"); // will output 12
?>
Example 3: php string length
$str = 'abcdef';
echo strlen($str); // 6