mirror of
https://github.com/php/php-src.git
synced 2026-03-31 20:53:00 +02:00
17 lines
314 B
PHP
17 lines
314 B
PHP
--TEST--
|
|
Registration of HTTP_RAW_POST_DATA due to unknown content-type
|
|
--INI--
|
|
always_populate_raw_post_data=-1
|
|
--POST_RAW--
|
|
Content-Type: unknown/type
|
|
a=1&b=ZYX
|
|
--FILE--
|
|
<?php
|
|
var_dump($_POST, $HTTP_RAW_POST_DATA);
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined variable: HTTP_RAW_POST_DATA in %s on line %d
|
|
array(0) {
|
|
}
|
|
NULL
|