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