Return to bug53180.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / basic |
1.1 ! misho 1: --TEST-- ! 2: Bug #53180 (post_max_size=0 partly not working) ! 3: --INI-- ! 4: post_max_size=0 ! 5: --POST-- ! 6: email=foo&password=bar&submit=Log+on ! 7: --FILE-- ! 8: <?php ! 9: var_dump($_POST); ! 10: ?> ! 11: --EXPECT-- ! 12: array(3) { ! 13: ["email"]=> ! 14: string(3) "foo" ! 15: ["password"]=> ! 16: string(3) "bar" ! 17: ["submit"]=> ! 18: string(6) "Log on" ! 19: }