I'm looking for the equivalent of what in js would be 'this is a string'.split('') for PHP.
If I try $array = explode('', 'testing'); I get an error Warning: explode() [function.explode]: Empty delimiter in
Is there another way to do this?
$string = "TEST";
echo $string[0]; // This will display T
There is no need to explode it
for loop over the strlen of the string.