1--TEST--
2rfc1867 post_max_size
3--INI--
4post_max_size=1
5error_reporting=E_ALL&~E_NOTICE
6comment=debug builds show some additional E_NOTICE errors
7--POST_RAW--
8Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
9-----------------------------20896060251896012921717172737
10Content-Disposition: form-data; name="foobar"
11
121
13-----------------------------20896060251896012921717172737--
14--FILE--
15<?php
16var_dump($_FILES);
17var_dump($_POST);
18?>
19--EXPECTF--
20Warning: POST Content-Length of %d bytes exceeds the limit of 1 bytes in %s
21array(0) {
22}
23array(0) {
24}
25