I know that strings in php are ..... strings but for example I can do
$str = 'String';
echo $str[0];
echo $str[1];
//result
S
t
echo count($str)
//result
1
Why I can walk trough them like in an array but can't count them with count? (I know that I can use strlen() )