
| Path : /proc/thread-self/root/usr/src/php/tests/basic/ |
| Current File : //proc/thread-self/root/usr/src/php/tests/basic/020.phpt |
--TEST--
POST Method test and arrays - 8
--POST--
a[a[]]=1&a[b[]]=3
--FILE--
<?php
var_dump($_POST['a']);
?>
--EXPECT--
array(2) {
["a["]=>
string(1) "1"
["b["]=>
string(1) "3"
}