1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/tests/basic/020.phpt
2009-07-18 13:44:15 +00:00

16 lines
193 B
PHP

--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"
}