php-src/ext/standard/tests/file/bug40501.phpt
David Soria Parra d4e8fa62c6 MFH: Add an escape parameter to fgetcsv to satisfy rfc4180 and bug #40501.
[DOC] 5th parameter available since PHP 5.3+
2007-10-03 10:44:32 +00:00

20 lines
427 B
PHP

--TEST--
Bug #40501 (fgetcsv() can't handle trailing odd number of backslashes)
--FILE--
<?php
$file = dirname(__FILE__).'/bug40501.csv';
$h = fopen($file, 'r');
$data = fgetcsv($h, NULL, ',', '"', '"');
fclose($h);
var_dump($data);
?>
--EXPECT--
array(2) {
[0]=>
string(88) "this element contains the delimiter, and ends with an odd number of
backslashes (ex: 1)\"
[1]=>
string(30) "and it isn't the last element$"
}