php get length code example
Example 1: php string length
<?php
$str = 'abcdef';
echo strlen($str);
$str = ' ab cd ';
echo strlen($str);
?>
Example 2: string length php
<?php
$str = 'abcdef';
echo strlen($str);
$str = ' ab cd ';
echo strlen($str);
?>
Example 3: get number of chars ina string php
$name = "Perú";
echo strlen($name);
$name = "Peru";
echo strlen($name);
Example 4: Get PHP String Length
phpCopy<?php
$mystring = "This is my string";
echo("The string length in bytes is: ");
echo(strlen($mystring));
?>