File tree Expand file tree Collapse file tree 1 file changed +0
-39
lines changed Expand file tree Collapse file tree 1 file changed +0
-39
lines changed Original file line number Diff line number Diff line change @@ -11,45 +11,6 @@ var_dump(parse_url('http://user:pass@host'));
11
11
var_dump (parse_url ('//user:pass@host ' ));
12
12
var_dump (parse_url ('//user@host ' ));
13
13
?>
14
- --EXPECTF--
15
- array(4) {
16
- ["scheme"]=>
17
- string(4) "http"
18
- ["host"]=>
19
- string(4) "host"
20
- ["user"]=>
21
- string(4) "user"
22
- ["pass"]=>
23
- string(4) "pass"
24
- }
25
-
26
- array(3) {
27
- ["host"]=>
28
- string(4) "host"
29
- ["user"]=>
30
- string(4) "user"
31
- ["pass"]=>
32
- string(4) "pass"
33
- }
34
-
35
- array(2) {
36
- ["host"]=>
37
- string(4) "host"
38
- ["user"]=>
39
- string(4) "user"
40
- }--TEST--
41
- Test parse_url() for bug #63162
42
- --DESCRIPTION--
43
- This test covers tests the inputs:
44
- [0]=> http://user:pass@host
45
- [1]=> //user:pass@host
46
- [2]=> //user@host
47
- --FILE--
48
- <?php
49
- var_dump (parse_url ('http://user:pass@host ' ));
50
- var_dump (parse_url ('//user:pass@host ' ));
51
- var_dump (parse_url ('//user@host ' ));
52
- ?>
53
14
--EXPECT--
54
15
array(4) {
55
16
["scheme"]=>
You can’t perform that action at this time.
0 commit comments