php get length of string 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 php
<?php
$str = 'abcdef';
echo strlen($str);
$str = ' ab cd ';
echo strlen($str);
?>
Example 4: string length php
<?php
$str = 'php';
echo strlen($str);
$str = 's p a c e';
echo strlen($str);
?>
Example 5: get number of chars ina string php
$name = "Perú";
echo strlen($name);
$name = "Peru";
echo strlen($name);
Example 6: php string length
<?php
$str = 'Hello World!';
echo strlen($str);
?>