ec7d2d5dbc89307981c65d9b9e89c909940e2c73
[m6w6/ext-http] / tests / envrequestbody002.phpt
1 --TEST--
2 env request body
3 --SKIPIF--
4 <? include "skipif.inc";
5 --PUT--
6 Content-Type: application/x-www-form-urlencoded
7 foo=bar&baz=buh
8 --FILE--
9 <?
10 var_dump($_POST);
11 ?>
12 DONE
13 --EXPECT--
14 array(2) {
15 ["foo"]=>
16 string(3) "bar"
17 ["baz"]=>
18 string(3) "buh"
19 }
20 DONE