fix tests with short_open_tags off
[m6w6/ext-http] / tests / envrequestbody002.phpt
1 --TEST--
2 env request body
3 --SKIPIF--
4 <?php include "skipif.inc"; ?>
5 --PUT--
6 Content-Type: application/x-www-form-urlencoded
7 foo=bar&baz=buh
8 --FILE--
9 <?php
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