summaryrefslogtreecommitdiff
path: root/tests/basic/019.phpt
blob: 0c90c4907a3c401f3f9e6eaa2078c891c9dc8325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
POST Method test and arrays - 7
--POST--
a[]=1&a[]]=3&a[[]=4
--FILE--
<?php
var_dump($_POST['a']);
?>
--EXPECT--
array(3) {
  [0]=>
  string(1) "1"
  [1]=>
  string(1) "3"
  ["["]=>
  string(1) "4"
}