summaryrefslogtreecommitdiff
path: root/tests/basic/016.phpt
blob: b34fd1b1dc63653957e1827879ca31496aabf3df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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"
}