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