len un 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: find string lenght in php
Use the PHP strlen() function
<?php
$name = 'abcdef';
echo strlen($str); // 6
$string = ' ab cd ';
echo strlen($str); // 7
?>
Use the PHP strlen() function