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