is there a way to split a string into segments of one character each?
this is what i have now:
$str = 'a,b,c,d,e';
$array = explode (',', $str);
this is what i would like to have:
$str = 'abcde';
$array = explode ('', $str);
this of course doesn't work. is there a way to pass an empty value through explode? or is there another way to do it?
thanks!
jared