fork download
  1. <?php
  2.  
  3. $new = "PALM DESERT SD63376 ";
  4. print_r(preg_split('/\s{2,}/', $new, -1, PREG_SPLIT_NO_EMPTY));
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [0] => PALM DESERT
    [1] => SD63376
)