Skip to content

Commit ad57099

Browse files
husmansmalyshev
authored andcommitted
synergy ftl. Removed duplicate fields.
1 parent 6ec6b20 commit ad57099

File tree

1 file changed

+0
-39
lines changed

1 file changed

+0
-39
lines changed

tests/output/bug63162.phpt

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -11,45 +11,6 @@ var_dump(parse_url('http://user:pass@host'));
1111
var_dump(parse_url('//user:pass@host'));
1212
var_dump(parse_url('//user@host'));
1313
?>
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-
?>
5314
--EXPECT--
5415
array(4) {
5516
["scheme"]=>

0 commit comments

Comments
 (0)