blob: 5c2eb76952fcbc2fd0953b9ec372eb895ffc2cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--TEST--
Bug #53180 (post_max_size=0 partly not working)
--INI--
post_max_size=0
--POST--
email=foo&password=bar&submit=Log+on
--FILE--
<?php
var_dump($_POST);
?>
--EXPECT--
array(3) {
["email"]=>
string(3) "foo"
["password"]=>
string(3) "bar"
["submit"]=>
string(6) "Log on"
}
|