fork(1) download
  1. <?php
  2.  
  3. $s = "5,test2,4631954,Y,«some, string, text.»,299.00 TJS,http://some-link";
  4. print_r(preg_split('~«[^«»]*»(*SKIP)(*F)|\s*,\s*~u', $s));
Success #stdin #stdout 0.02s 82624KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 5
    [1] => test2
    [2] => 4631954
    [3] => Y
    [4] => «some, string, text.»
    [5] => 299.00 TJS
    [6] => http://some-link
)