improve
authorMichael Wallner <mike@php.net>
Wed, 9 Oct 2013 07:43:46 +0000 (07:43 +0000)
committerMichael Wallner <mike@php.net>
Wed, 9 Oct 2013 07:43:46 +0000 (07:43 +0000)
tests/message002.phpt

index f515af52e42600feaf26edd8461bf354f4fc772e..f701bc2aa104043dd1ec84de6abc89ab0ff70255 100644 (file)
@@ -18,10 +18,16 @@ use http\env\Request as HttpEnvRequest;
 $m = new HttpEnvRequest();
 
 var_dump($m);
+
+echo "Message->toString\n";
 echo $m,"\n";
 
+echo "Body->toString\n";
 var_dump((string)$m->getBody());
 
+echo "stream\n";
+var_dump(file_get_contents("php://input"));
+
 echo "Done\n";
 --EXPECTF--
 Test
@@ -78,6 +84,7 @@ object(%s)#%d (13) {
   array(0) {
   }
 }
+Message->toString
 POST / HTTP/1.1%a
 X-Test: test%a
 Content-Length: 3%a
@@ -85,5 +92,8 @@ Content-Type: test/something%a
 Cookie: foo=bar%a
 %a
 b=c
+Body->toString
+string(3) "b=c"
+stream
 string(3) "b=c"
 Done