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