1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
Files
archived-php-src/ext/standard/tests/url/parse_url_relative_scheme.phpt
T
2012-08-19 22:15:58 -07:00

12 lines
205 B
PHP

--TEST--
Test parse_url() function: Checks relative URL schemes (e.g. "//example.com")
--FILE--
<?php
var_dump(parse_url('//example.org'));
--EXPECT--
array(1) {
["host"]=>
string(11) "example.org"
}