1--TEST-- 2Test parse_url() function: Parse a load of URLs without specifying PHP_URL_QUERY as the URL component 3--FILE-- 4<?php 5/* Prototype : proto mixed parse_url(string url, [int url_component]) 6 * Description: Parse a URL and return its components 7 * Source code: ext/standard/url.c 8 * Alias to functions: 9 */ 10 11/* 12 * Parse a load of URLs without specifying PHP_URL_QUERY as the URL component 13 */ 14include_once(dirname(__FILE__) . '/urls.inc'); 15 16foreach ($urls as $url) { 17 echo "--> $url : "; 18 var_dump(parse_url($url, PHP_URL_QUERY)); 19} 20 21echo "Done"; 22?> 23--EXPECTF-- 24--> 64.246.30.37 : NULL 25--> http://64.246.30.37 : NULL 26--> http://64.246.30.37/ : NULL 27--> 64.246.30.37/ : NULL 28--> 64.246.30.37:80/ : NULL 29--> php.net : NULL 30--> php.net/ : NULL 31--> http://php.net : NULL 32--> http://php.net/ : NULL 33--> www.php.net : NULL 34--> www.php.net/ : NULL 35--> http://www.php.net : NULL 36--> http://www.php.net/ : NULL 37--> www.php.net:80 : NULL 38--> http://www.php.net:80 : NULL 39--> http://www.php.net:80/ : NULL 40--> http://www.php.net/index.php : NULL 41--> www.php.net/? : NULL 42--> www.php.net:80/? : NULL 43--> http://www.php.net/? : NULL 44--> http://www.php.net:80/? : NULL 45--> http://www.php.net:80/index.php : NULL 46--> http://www.php.net:80/foo/bar/index.php : NULL 47--> http://www.php.net:80/this/is/a/very/deep/directory/structure/and/file.php : NULL 48--> http://www.php.net:80/this/is/a/very/deep/directory/structure/and/file.php?lots=1&of=2¶meters=3&too=4&here=5 : string(37) "lots=1&of=2¶meters=3&too=4&here=5" 49--> http://www.php.net:80/this/is/a/very/deep/directory/structure/and/ : NULL 50--> http://www.php.net:80/this/is/a/very/deep/directory/structure/and/file.php : NULL 51--> http://www.php.net:80/this/../a/../deep/directory : NULL 52--> http://www.php.net:80/this/../a/../deep/directory/ : NULL 53--> http://www.php.net:80/this/is/a/very/deep/directory/../file.php : NULL 54--> http://www.php.net:80/index.php : NULL 55--> http://www.php.net:80/index.php? : NULL 56--> http://www.php.net:80/#foo : NULL 57--> http://www.php.net:80/?# : NULL 58--> http://www.php.net:80/?test=1 : string(6) "test=1" 59--> http://www.php.net/?test=1& : string(7) "test=1&" 60--> http://www.php.net:80/?& : string(1) "&" 61--> http://www.php.net:80/index.php?test=1& : string(7) "test=1&" 62--> http://www.php.net/index.php?& : string(1) "&" 63--> http://www.php.net:80/index.php?foo& : string(4) "foo&" 64--> http://www.php.net/index.php?&foo : string(4) "&foo" 65--> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : string(31) "test=1&test2=char&test3=mixesCI" 66--> www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=1&test2=char&test3=mixesCI" 67--> http://secret@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=1&test2=char&test3=mixesCI" 68--> http://secret:@www.php.net/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=1&test2=char&test3=mixesCI" 69--> http://:hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=1&test2=char&test3=mixesCI" 70--> http://secret:hideout@www.php.net/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=1&test2=char&test3=mixesCI" 71--> http://secret@hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=1&test2=char&test3=mixesCI" 72--> http://secret:hid:out@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=1&test2=char&test3=mixesCI" 73--> nntp://news.php.net : NULL 74--> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : NULL 75--> zlib:http://foo@bar : NULL 76--> zlib:filename.txt : NULL 77--> zlib:/path/to/my/file/file.txt : NULL 78--> foo://foo@bar : NULL 79--> mailto:me@mydomain.com : NULL 80--> /foo.php?a=b&c=d : string(7) "a=b&c=d" 81--> foo.php?a=b&c=d : string(7) "a=b&c=d" 82--> http://user:passwd@www.example.com:8080?bar=1&boom=0 : string(12) "bar=1&boom=0" 83--> file:///path/to/file : NULL 84--> file://path/to/file : NULL 85--> file:/path/to/file : NULL 86--> http://1.2.3.4:/abc.asp?a=1&b=2 : string(7) "a=1&b=2" 87--> http://foo.com#bar : NULL 88--> scheme: : NULL 89--> foo+bar://baz@bang/bla : NULL 90--> gg:9130731 : NULL 91--> http://user:@pass@host/path?argument?value#etc : string(14) "argument?value" 92--> http://10.10.10.10/:80 : NULL 93--> http://x:? : NULL 94--> x:blah.com : NULL 95--> x:/blah.com : NULL 96--> x://::abc/? : bool(false) 97--> http://::? : NULL 98--> http://::# : NULL 99--> x://::6.5 : NULL 100--> http://?:/ : bool(false) 101--> http://@?:/ : bool(false) 102--> file:///: : NULL 103--> file:///a:/ : NULL 104--> file:///ab:/ : NULL 105--> file:///a:/ : NULL 106--> file:///@:/ : NULL 107--> file:///:80/ : NULL 108--> [] : NULL 109--> http://[x:80]/ : NULL 110--> : NULL 111--> / : NULL 112--> /rest/Users?filter={"id":"123"} : string(19) "filter={"id":"123"}" 113--> http:///blah.com : bool(false) 114--> http://:80 : bool(false) 115--> http://user@:80 : bool(false) 116--> http://user:pass@:80 : bool(false) 117--> http://: : bool(false) 118--> http://@/ : bool(false) 119--> http://@:/ : bool(false) 120--> http://:/ : bool(false) 121--> http://? : bool(false) 122--> http://# : bool(false) 123--> http://?: : bool(false) 124--> http://:? : bool(false) 125--> http://blah.com:123456 : bool(false) 126--> http://blah.com:abcdef : bool(false) 127Done 128