3v4l.org

run code in 300+ PHP versions simultaneously
<?php $fileContents = <<<EOD "quote \"testing\"","" "quote ""testing""","" "quote \,testing\,","" EOD; $handle = fopen('php://memory', 'w'); fwrite($handle, $fileContents); fseek($handle, 0); while(!feof($handle)) { $test = fgetcsv($handle, 0, ',', '"'); print_r($test); }

preferences:
36.22 ms | 402 KiB | 5 Q