- API juggling
[m6w6/ext-http] / tests / parse_headers_001.phpt
index 61ee93e2ebe1426e928b776654f183172497eb21..1e095f2dd1d933959f24fd67e47162766c842b5e 100644 (file)
@@ -1,13 +1,15 @@
 --TEST--
 http_parse_headers()
 --SKIPIF--
-<?php 
+<?php
 include 'skip.inc';
 ?>
 --FILE--
 <?php
+echo "-TEST\n";
 print_r(http_parse_headers(
 "Host: localhost\r\n".
+"Host: ambigious\r\n".
 "Nospace:here\r\n".
 "Muchspace:  there   \r\n".
 "Empty:\r\n".
@@ -21,12 +23,15 @@ print_r(http_parse_headers(
 ));
 ?>
 --EXPECTF--
-Content-type: text/html
-X-Powered-By: PHP/%s
-
+%sTEST
 Array
 (
-    [Host] => localhost
+    [Host] => Array
+        (
+            [0] => localhost
+            [1] => ambigious
+        )
+
     [Nospace] => here
     [Muchspace] => there
     [Empty] => 
@@ -34,4 +39,5 @@ Array
     [Folded] => one
        two
   three
-)
\ No newline at end of file
+)
+