get length of string pgp 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
<?php
$str = 'Hello World!';
echo strlen($str); // 12
?>