Well, hello community. I\'m workin\' on a CSV decoder in PHP (yeah, I know there\'s already one, but as a challenge for me, since I\'m learning it in my free time). Now the prob
You can use this function str_getcsv in this you can specify a custom delimiter(;) as well.
str_getcsv
;
Try this code snippet
Output:
Array ( [0] => 0;0 [1] => 1 [2] => 2 [3] => 3 [4] => 4 )