1--TEST--
2rfc1867 post_max_size
3--INI--
4post_max_size=1
5--POST_RAW--
6Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
7-----------------------------20896060251896012921717172737
8Content-Disposition: form-data; name="foobar"
9
101
11-----------------------------20896060251896012921717172737--
12--FILE--
13<?php
14var_dump($_FILES);
15var_dump($_POST);
16?>
17--EXPECTF--
18Warning: POST Content-Length of %d bytes exceeds the limit of 1 bytes in %s
19array(0) {
20}
21array(0) {
22}
23