diff options
author | Nikita Popov <nikic@php.net> | 2016-10-08 00:43:36 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-10-08 00:43:36 +0200 |
commit | bc3a0b82b82e54dabe688dcc37f8ada92771da0f (patch) | |
tree | 94234573f250cdf1dd899c1f65a38d811391c2e8 /ext/standard/tests/strings | |
parent | 1c468ee044289661c8c4118a0653222596668432 (diff) | |
download | php-git-bc3a0b82b82e54dabe688dcc37f8ada92771da0f.tar.gz |
Revert "Fixed test"
This reverts commit a10d03ac166daba646b6023e0f12e9ee8040c909.
Diffstat (limited to 'ext/standard/tests/strings')
-rw-r--r-- | ext/standard/tests/strings/url_t.phpt | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/ext/standard/tests/strings/url_t.phpt b/ext/standard/tests/strings/url_t.phpt index 8fdddcb9f5..e172061ec2 100644 --- a/ext/standard/tests/strings/url_t.phpt +++ b/ext/standard/tests/strings/url_t.phpt @@ -575,7 +575,22 @@ $sample_urls = array ( string(16) "some_page_ref123" } ---> http://secret@hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123: bool(false) +--> http://secret@hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123: array(7) { + ["scheme"]=> + string(4) "http" + ["host"]=> + string(11) "www.php.net" + ["port"]=> + int(80) + ["user"]=> + string(14) "secret@hideout" + ["path"]=> + string(10) "/index.php" + ["query"]=> + string(31) "test=1&test2=char&test3=mixesCI" + ["fragment"]=> + string(16) "some_page_ref123" +} --> http://secret:hid:out@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123: array(8) { ["scheme"]=> @@ -744,7 +759,22 @@ $sample_urls = array ( string(7) "9130731" } ---> http://user:@pass@host/path?argument?value#etc: bool(false) +--> http://user:@pass@host/path?argument?value#etc: array(7) { + ["scheme"]=> + string(4) "http" + ["host"]=> + string(4) "host" + ["user"]=> + string(4) "user" + ["pass"]=> + string(5) "@pass" + ["path"]=> + string(5) "/path" + ["query"]=> + string(14) "argument?value" + ["fragment"]=> + string(3) "etc" +} string(4) "http" string(11) "www.php.net" int(80) |