解决方案 »

  1.   

    $data = "Model:Galaxy Nexus SystemVersion:4.3 AppVersionCode:78 AppVersionName:3.140801.4";
    $ar = preg_split('/(\w+:)/', $data, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
    $ar = array_map('join', array_chunk($ar, 2));
    print_r($ar);Array
    (
        [0] => Model:Galaxy Nexus 
        [1] => SystemVersion:4.3 
        [2] => AppVersionCode:78 
        [3] => AppVersionName:3.140801.4
    )