summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug22382.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/bug22382.phpt')
-rw-r--r--ext/standard/tests/file/bug22382.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/ext/standard/tests/file/bug22382.phpt b/ext/standard/tests/file/bug22382.phpt
deleted file mode 100644
index 2ba36ee1de..0000000000
--- a/ext/standard/tests/file/bug22382.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
---TEST--
-Bug #22382 (fgetcsv() does not handle escaped quotes correctly)
---FILE--
-<?php
-$fp = fopen(dirname(__FILE__)."/test2.csv", "r");
-while(($line = fgetcsv($fp, 1024))) {
- var_dump($line);
-}
-fclose($fp);
-?>
---EXPECT--
-array(6) {
- [0]=>
- string(3) "One"
- [1]=>
- string(7) "\"Two\""
- [2]=>
- string(7) "Three\""
- [3]=>
- string(4) "Four"
- [4]=>
- string(2) "\\"
- [5]=>
- string(28) "\\\\\\\\\\\\\\\\\\\\\\\"\\\\"
-}