<?php $x1 = str_getcsv('"\"test\""'); echo $x1[0], "\n"; $x2 = str_getcsv('"""test"""'); echo $x2[0], "\n"; $fh=fopen('php://stdout','w'); fputcsv($fh,$x1,',','"','\\'); fputcsv($fh,$x2,',','"','\\');
You have javascript disabled. You will not be able to edit any code.