In PHP is there any function to break up string in to characters or array.
Example: OVERFLOW
I need to break up the above text OVERFLOW int to: O V E R F L O W
OR
array(
0=> 'O',
1=> 'V',
2=> 'E',
3=> 'R',
4=> 'F',
5=> 'L',
6=> 'O',
7=> 'W'
)
or any otherway is there..?