TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
253 B

--TEST--
str_getcsv() with empty $escape
--FILE--
<?php
$contents = <<<EOS
"cell1","cell2\\","cell3","cell4"
EOS;
print_r(str_getcsv($contents, ',', '"', ''));
?>
--EXPECT--
Array
(
[0] => cell1
[1] => cell2\
[2] => cell3
[3] => cell4
)