1 2 3 4 | <?php $s = '1,"x1",43,"tr","y,7"'; print_r(preg_split('/,(?=([^"]*"[^"]*")*[^"]*$)/', $s)); ?> |
PD9waHAKJHMgPSAnMSwieDEiLDQzLCJ0ciIsInksNyInOwpwcmludF9yKHByZWdfc3BsaXQoJy8sKD89KFteIl0qIlteIl0qIikqW14iXSokKS8nLCAkcykpOwo/Pg==
-
upload with new input
-
result: Success time: 0s memory: 13112 kB returned value: 0
Array ( [0] => 1 [1] => "x1" [2] => 43 [3] => "tr" [4] => "y,7" )


