- API juggling
[m6w6/ext-http] / tests / split_response_001.phpt
index 799e23a2814248220abb37c4a91c4ce08bd814ee..f3d73a5e7aab8408adeb1e621f01746019f3b2c7 100644 (file)
@@ -6,12 +6,13 @@ include 'skip.inc';
 ?>
 --FILE--
 <?php
-var_export(http_split_response("HTTP/1.1 200 Ok\r\nContent-Type: text/plain\r\nContent-Language: de-AT\r\nDate: Sat, 22 Jan 2005 18:10:02 GMT\r\n\r\nHallo Du!"));
+echo "-TEST\n";
+$data = "HTTP/1.1 200 Ok\r\nContent-Type: text/plain\r\nContent-Language: de-AT\r\nDate: Sat, 22 Jan 2005 18:10:02 GMT\r\n\r\nHallo Du!";
+var_export(http_split_response($data));
+echo "\nDone\n";
 ?>
 --EXPECTF--
-Content-type: text/html
-X-Powered-By: PHP/%s
-
+%sTEST
 array (
   0 => 
   array (
@@ -22,3 +23,5 @@ array (
   ),
   1 => 'Hallo Du!',
 )
+Done
+