mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
420352d8b5
instances where content type is not known
19 lines
346 B
PHP
19 lines
346 B
PHP
--TEST--
|
|
Registration of HTTP_RAW_POST_DATA due to unknown content-type
|
|
--INI--
|
|
magic_quotes_gpc=0
|
|
always_populate_raw_post_data=0
|
|
--SKIPIF--
|
|
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
|
|
--POST_RAW--
|
|
Content-Type: unknown/type
|
|
a=1&b=ZYX
|
|
--FILE--
|
|
<?php
|
|
var_dump($_POST, $HTTP_RAW_POST_DATA);
|
|
?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|
|
string(10) "a=1&b=ZYX
|
|
"
|