How can I split a string like:
DEFGHIJKLMN into an array of characters like:
$diskVolume = array('D','E','F','G','H','I','J','K','L','M','N'); explode() doesn't work for this kind of string because there are no delimiters on which to split the string.