how to get string length in php code example
Example 1: php string length
<?php
$str = 'abcdef';
echo strlen($str);
$str = ' ab cd ';
echo strlen($str);
?>
Example 2: how to check php string length
<?php
$name = 'abcdef';
echo strlen($str);
$string = ' ab cd ';
echo strlen($str);
?>
Example 3: string length in php
Syntax:
strlen(paramenter);
<?php
$name = 'ankur';
echo "Name Length : ".strlen($name);
$message = 'Welcome greppers !';
echo "Message Length : ".strlen($message);
?>
Example 4: Get PHP String Length
phpCopy<?php
$mystring = "This is my string";
echo("The string length in bytes is: ");
echo(strlen($mystring));
?>