summaryrefslogtreecommitdiff
path: root/tests/basic/026.phpt
blob: 65ddda16d618924373d50909cd3831a3d8715bfc (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--
magic_quotes_gpc=0
always_populate_raw_post_data=0
--POST_RAW--
Content-Type: unknown/type
a=1&b=ZYX
--FILE--
<?php
var_dump($_POST, $HTTP_RAW_POST_DATA);
?>
--EXPECT--
array(0) {
}
unicode(9) "a=1&b=ZYX"