1--TEST--
2str_getcsv() with empty $escape
3--FILE--
4<?php
5$contents = <<<EOS
6"cell1","cell2\\","cell3","cell4"
7EOS;
8print_r(str_getcsv($contents, ',', '"', ''));
9?>
10===DONE===
11--EXPECT--
12Array
13(
14 [0] => cell1
15 [1] => cell2\
16 [2] => cell3
17 [3] => cell4
18)
19===DONE===
20