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

16 lines
187 B
PHP

--TEST--
POST Method test and arrays - 4
--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"
}