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