026_1.phpt 314 B

12345678910111213141516
  1. --TEST--
  2. Registration of HTTP_RAW_POST_DATA due to unknown content-type
  3. --INI--
  4. always_populate_raw_post_data=-1
  5. --POST_RAW--
  6. Content-Type: unknown/type
  7. a=1&b=ZYX
  8. --FILE--
  9. <?php
  10. var_dump($_POST, $HTTP_RAW_POST_DATA);
  11. ?>
  12. --EXPECTF--
  13. Notice: Undefined variable: HTTP_RAW_POST_DATA in %s on line %d
  14. array(0) {
  15. }
  16. NULL