summaryrefslogtreecommitdiff
path: root/tests/basic/026_1.phpt
blob: 527a795f679ca515152fdbac7d8560fd54e282d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--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