fork(1) download
  1. <?php
  2.  
  3. var_dump(str_getcsv('123;"Текст;Текст";2 3 4 3;"Текст;Текст";5555', ';'));
Success #stdin #stdout 0.01s 24332KB
stdin
Standard input is empty
stdout
array(5) {
  [0]=>
  string(3) "123"
  [1]=>
  string(21) "Текст;Текст"
  [2]=>
  string(7) "2 3 4 3"
  [3]=>
  string(21) "Текст;Текст"
  [4]=>
  string(4) "5555"
}