I need to change an array of comma-delimited integers into an array of individual numbers.
Sample input:
[
'1,24,5',
'4',
'88, 12, 19, 6'
]
Desired result:
Array
(
[0] => 1
[1] => 24
[2] => 5
[3] => 4
[4] => 88
[5] => 12
[6] => 19
[7] => 6
)