1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/basic/016.phpt
2018-10-14 19:46:15 +02:00

16 lines
181 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) {
["a"]=>
string(1) "1"
["b"]=>
string(1) "3"
}