test http\Url::SANITIZE_PATH
authorMichael Wallner <mike@php.net>
Mon, 30 Jul 2012 18:35:49 +0000 (18:35 +0000)
committerMichael Wallner <mike@php.net>
Mon, 30 Jul 2012 18:35:49 +0000 (18:35 +0000)
tests/url001.phpt

index 6519ddfcb4900bd8ee21661fdb2294e40c655ff5..cd792f29688d894a7680498ad88da5534a83941a 100644 (file)
@@ -12,7 +12,7 @@ s=b&i=0&e=&a[]=1&a[]=2
 printf("%s\n", new http\Url);
 printf("%s\n", new http\Url("other", "index"));
 printf("%s\n", new http\Url(array("scheme" => "https", "port" => 443)));
-printf("%s\n", new http\Url(array("path" => "/./up/../down/../././//index.php/.", "query" => null)));
+printf("%s\n", new http\Url(array("path" => "/./up/../down/../././//index.php/.", "query" => null), null, http\Url::SANITIZE_PATH|http\Url::FROM_ENV));
 printf("%s\n", new http\Url(null, null, 0));
 ?>
 DONE