php check lenth code example
Example 1: string length php
<?php
$str = 'php';
echo strlen($str); // 3
$str = 's p a c e';
echo strlen($str); // 9
?>
Example 2: find string lenght in php
Use the PHP strlen() function
<?php
$str = 'php';
echo strlen($str); // 3
$str = 's p a c e';
echo strlen($str); // 9
?>
Use the PHP strlen() function