blob: d44aafb97fcf75ef7befe9bd0e99a481d4f493ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
POST Method test and arrays - 8
--POST--
a[a[]]=1&a[b[]]=3
--FILE--
<?php
var_dump($_POST['a']);
?>
--EXPECT--
array(2) {
[u"a["]=>
unicode(1) "1"
[u"b["]=>
unicode(1) "3"
}
|