Return to 026.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / basic |
1.1 ! misho 1: --TEST-- ! 2: Registration of HTTP_RAW_POST_DATA due to unknown content-type ! 3: --INI-- ! 4: magic_quotes_gpc=0 ! 5: always_populate_raw_post_data=0 ! 6: --POST_RAW-- ! 7: Content-Type: unknown/type ! 8: a=1&b=ZYX ! 9: --FILE-- ! 10: <?php ! 11: var_dump($_POST, $HTTP_RAW_POST_DATA); ! 12: ?> ! 13: --EXPECT-- ! 14: array(0) { ! 15: } ! 16: string(9) "a=1&b=ZYX"