$string ="A few words";
Is it prossible (with the explode function or whatever) to put all the characters into an array?
The result would be something like
array("A", " ", "f", "e", [...]);
your string itself is an array example
<?php $string = "TommYNandA Scares People"; echo $string[0]; prints out T echo $string[1]; prints out o ?>
If you still want to pull these chars into another array you could use some for loops and string length functions
Good Luck TommYNandA
Thanks!