mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
45f7b2bcc8
Also fix a single instance of CRLF in ibase_query.c.
20 lines
290 B
PHP
20 lines
290 B
PHP
--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"
|
|
}
|