blob: a4155dcf64b87f7b31f0c2a77929ed9a46b40afa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
POST Method test and arrays
--SKIPIF--
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
--POST--
a[]=1
--FILE--
<?php
var_dump($_POST['a']);
?>
--EXPECT--
array(1) {
[0]=>
string(1) "1"
}
|