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