Dear Readers,
I would like to split the content of an array to 26 different arrays, by the first character:
$array_a $array_b $array_c
etc. etc.
How to do this?
Lessee:
foreach($array as $element) { ${'array_'.strtolower(substr($element,0,1))}[] = $element; }