summaryrefslogtreecommitdiff
path: root/tests/basic/013.phpt
blob: 0cd81a71853e69ec125ffa5e471850ceda797f86 (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"
}