<?php $fileContents = <<<EOD "quote \"testing\"","" "quote ""testing""","" "quote \,testing\,","" EOD; $handle = fopen('php://memory', 'w'); fwrite($handle, $fileContents); fseek($handle, 0); while(($test = fgetcsv($handle)) !== false) { print_r($test); }
You have javascript disabled. You will not be able to edit any code.