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