diff options
Diffstat (limited to 'tests/basic/020.phpt')
-rw-r--r-- | tests/basic/020.phpt | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/basic/020.phpt b/tests/basic/020.phpt deleted file mode 100644 index 0d4704e7f9..0000000000 --- a/tests/basic/020.phpt +++ /dev/null @@ -1,17 +0,0 @@ ---TEST-- -POST Method test and arrays - 8 ---SKIPIF-- -<?php if (php_sapi_name()=='cli') echo 'skip'; ?> ---POST-- -a[a[]]=1&a[b[]]=3 ---FILE-- -<?php -var_dump($_POST['a']); -?> ---EXPECT-- -array(2) { - ["a["]=> - string(1) "1" - ["b["]=> - string(1) "3" -} |