Is there a nice way to iterate on the characters of a string? I\'d like to be able to do foreach, array_map, array_walk, array_
foreach
array_map
array_walk
array_
Iterate string:
for ($i = 0; $i < strlen($str); $i++){ echo $str[$i]; }