Como atravessar caracteres em uma string em um loop em php
<?php
$str = "apple";
$length = strlen($str);
for ($index = 0; $index < $length; $index++) {
echo $str[$index];
echo "<br>";
}
?>
Grotesque Goose