-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Expand file tree
/
Copy pathparse_url_basic_002.phpt
More file actions
159 lines (156 loc) · 6.52 KB
/
Copy pathparse_url_basic_002.phpt
File metadata and controls
159 lines (156 loc) · 6.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
--TEST--
Test parse_url() function: Parse a load of URLs without specifying PHP_URL_SCHEME as the URL component
--FILE--
<?php
/*
* Parse a load of URLs without specifying PHP_URL_SCHEME as the URL component
*/
include_once(__DIR__ . '/urls.inc');
foreach ($urls as $url) {
echo "--> $url : ";
var_dump(parse_url($url, PHP_URL_SCHEME));
}
echo "Done";
?>
--EXPECTF--
--> 64.246.30.37 : NULL
--> http://64.246.30.37 : string(4) "http"
--> http://64.246.30.37/ : string(4) "http"
--> 64.246.30.37/ : NULL
--> 64.246.30.37:80/ : NULL
--> php.net : NULL
--> php.net/ : NULL
--> http://php.net : string(4) "http"
--> http://php.net/ : string(4) "http"
--> www.php.net : NULL
--> www.php.net/ : NULL
--> http://www.php.net : string(4) "http"
--> http://www.php.net/ : string(4) "http"
--> www.php.net:80 : NULL
--> http://www.php.net:80 : string(4) "http"
--> http://www.php.net:80/ : string(4) "http"
--> http://www.php.net/index.php : string(4) "http"
--> www.php.net/? : NULL
--> www.php.net:80/? : NULL
--> http://www.php.net/? : string(4) "http"
--> http://www.php.net:80/? : string(4) "http"
--> http://www.php.net:80/index.php : string(4) "http"
--> http://www.php.net:80/foo/bar/index.php : string(4) "http"
--> http://www.php.net:80/this/is/a/very/deep/directory/structure/and/file.php : string(4) "http"
--> 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(4) "http"
--> http://www.php.net:80/this/is/a/very/deep/directory/structure/and/ : string(4) "http"
--> http://www.php.net:80/this/is/a/very/deep/directory/structure/and/file.php : string(4) "http"
--> http://www.php.net:80/this/../a/../deep/directory : string(4) "http"
--> http://www.php.net:80/this/../a/../deep/directory/ : string(4) "http"
--> http://www.php.net:80/this/is/a/very/deep/directory/../file.php : string(4) "http"
--> http://www.php.net:80/index.php : string(4) "http"
--> http://www.php.net:80/index.php? : string(4) "http"
--> http://www.php.net:80/#foo : string(4) "http"
--> http://www.php.net:80/?# : string(4) "http"
--> http://www.php.net:80/?test=1 : string(4) "http"
--> http://www.php.net/?test=1& : string(4) "http"
--> http://www.php.net:80/?& : string(4) "http"
--> http://www.php.net:80/index.php?test=1& : string(4) "http"
--> http://www.php.net/index.php?& : string(4) "http"
--> http://www.php.net:80/index.php?foo& : string(4) "http"
--> http://www.php.net/index.php?&foo : string(4) "http"
--> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : string(4) "http"
--> www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : NULL
--> http://secret@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(4) "http"
--> http://secret:@www.php.net/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(4) "http"
--> http://:hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(4) "http"
--> http://secret:hideout@www.php.net/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(4) "http"
--> http://secret@hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(4) "http"
--> http://secret:hid:out@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(4) "http"
--> nntp://news.php.net : string(4) "nntp"
--> ftp://ftp.gnu.org/gnu/glic/glibc.tar.gz : string(3) "ftp"
--> zlib:http://foo@bar : string(4) "zlib"
--> zlib:filename.txt : string(4) "zlib"
--> zlib:/path/to/my/file/file.txt : string(4) "zlib"
--> foo://foo@bar : string(3) "foo"
--> mailto:me@mydomain.com : string(6) "mailto"
--> /foo.php?a=b&c=d : NULL
--> foo.php?a=b&c=d : NULL
--> http://user:passwd@www.example.com:8080?bar=1&boom=0 : string(4) "http"
--> http://user_me-you:my_pas-word@www.example.com:8080?bar=1&boom=0 : string(4) "http"
--> file:///path/to/file : string(4) "file"
--> file://path/to/file : string(4) "file"
--> file:/path/to/file : string(4) "file"
--> http://1.2.3.4:/abc.asp?a=1&b=2 : string(4) "http"
--> http://foo.com#bar : string(4) "http"
--> scheme: : string(6) "scheme"
--> foo+bar://baz@bang/bla : string(7) "foo+bar"
--> gg:9130731 : string(2) "gg"
--> http://user:@pass@host/path?argument?value#etc : string(4) "http"
--> http://10.10.10.10/:80 : string(4) "http"
--> http://x:? : string(4) "http"
--> x:blah.com : string(1) "x"
--> x:/blah.com : string(1) "x"
--> x://::abc/? :
Warning: parse_url(): Invalid port in URL in %s on line %d
bool(false)
--> http://::? : string(4) "http"
--> http://::# : string(4) "http"
--> x://::6.5 : string(1) "x"
--> http://?:/ :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://@?:/ :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> file:///: : string(4) "file"
--> file:///a:/ : string(4) "file"
--> file:///ab:/ : string(4) "file"
--> file:///a:/ : string(4) "file"
--> file:///@:/ : string(4) "file"
--> file:///:80/ : string(4) "file"
--> [] : NULL
--> http://[x:80]/ : string(4) "http"
--> : NULL
--> / : NULL
--> /rest/Users?filter={"id":"123"} : NULL
--> %:x : NULL
--> https://example.com:0/ : string(5) "https"
--> http:///blah.com :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://:80 :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://user@:80 :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://user:pass@:80 :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://: :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://@/ :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://@:/ :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://:/ :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://? :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://# :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://?: :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://:? :
Warning: parse_url(): Empty host in URL in %s on line %d
bool(false)
--> http://blah.com:123456 :
Warning: parse_url(): Port number too long in URL in %s on line %d
bool(false)
--> http://blah.com:abcdef :
Warning: parse_url(): Port number too long in URL in %s on line %d
bool(false)
Done