how find the length of a string in php 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: php string length
<?php
$str = 'Hello World!';
echo strlen($str); // 12
?>