fork download
  1. <?php
  2.  
  3. $string = 'Date, Time, ABKtMSUNT000 [h], ABKtMWDIR012 [Deg.M], ABKtMWSPD012 [m/s],
  4. ABKtMTEMP002 [deg.C], ABKtMRAIN000 [mm/h] 190227, 2020, 9, 245.8, 2.886, 5.753, 0';
  5.  
  6. $pr = preg_replace(['/(?<!,)(?=\h\d+)/', '/\w+\h\[([^]]+)\]/'], [',', '$1'], $string);
  7.  
  8. $ef = array_map('trim', explode(',', $pr));
  9. $ex = array_chunk($ef, count($ef) / 2);
  10.  
  11. $data = array_combine($ex[0], $ex[1]);
  12.  
  13. print_r($data);
  14.  
Success #stdin #stdout 0.01s 82624KB
stdin
Standard input is empty
stdout
Array
(
    [Date] => 190227
    [Time] => 2020
    [h] => 9
    [Deg.M] => 245.8
    [m/s] => 2.886
    [deg.C] => 5.753
    [mm/h] => 0
)