3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array2CSV(array $array) { $sanitized = array(); foreach ($array as $col) { $col = str_replace(array('\\', '"'), array('\/', '\"')); $sanitized[] = "\"$col\""; } return implode(',', $sanitized); } echo array2CSV(array('test', 'te"t\est'))
Output for 5.4.0 - 5.4.24, 5.5.0 - 5.5.8
Parse error: syntax error, unexpected end of file, expecting ',' or ';' in /in/le2he on line 12
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected $end, expecting ',' or ';' in /in/le2he on line 12
Process exited with code 255.

preferences:
183.55 ms | 1394 KiB | 70 Q