fork download
  1. <?php
  2.  
  3. $array = [
  4. "10003",
  5. "10016",
  6. "10008, 10007, 10010",
  7. ];
  8.  
  9. $result = [];
  10. foreach ($array as $value) {
  11. array_push($result, ...explode(', ', $value));
  12. }
  13. var_export($result);
Success #stdin #stdout 0.02s 26272KB
stdin
Standard input is empty
stdout
array (
  0 => '10003',
  1 => '10016',
  2 => '10008',
  3 => '10007',
  4 => '10010',
)