Searched refs:parse_url (Results 1 – 25 of 32) sorted by relevance
12
/php-src/ext/standard/tests/url/ |
H A D | parse_url_basic_011.phpt | 2 Test parse_url() function: can not recognize port without scheme 5 echo "*** Testing parse_url() :can not recognize port without scheme ***\n"; 7 var_dump(parse_url('127.0.0.1:9999?')); 9 var_dump(parse_url('127.0.0.1:9999#')); 11 var_dump(parse_url('internal:#feeding')); 13 var_dump(parse_url('magnet:?xt=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C')); 16 *** Testing parse_url() :can not recognize port without scheme ***
|
H A D | parse_url_error_002.phpt | 2 Test parse_url() function: url component specifier out of range 5 echo "*** Testing parse_url() : error conditions: url component specifier out of range ***\n"; 9 var_dump(parse_url($url, -1)); 13 parse_url($url, 99); 21 *** Testing parse_url() : error conditions: url component specifier out of range *** 43 parse_url(): Argument #2 ($component) must be a valid URL component identifier, 99 given
|
H A D | bug69976.phpt | 5 var_dump(parse_url("/busca/?fq=B:20001")); 6 var_dump(parse_url("/busca/?fq=B:200013")); 7 var_dump(parse_url("/busca/?fq=home:01234")); 8 var_dump(parse_url("/busca/?fq=home:012345"));
|
H A D | bug74780.phpt | 2 Bug #74780 parse_url() borks when query string contains colon 6 parse_url('//php.net/path?query=1:2'), 7 parse_url('//php.net/path.php?query=a:b'), 8 parse_url('//username@php.net/path?query=1:2')
|
H A D | bug63162.phpt | 2 Test parse_url() for bug #63162 10 var_dump(parse_url('http://user:pass@host')); 11 var_dump(parse_url('//user:pass@host')); 12 var_dump(parse_url('//user@host'));
|
H A D | bug73192.phpt | 2 Bug #73192: parse_url return wrong hostname 6 var_dump(parse_url("http://example.com:80#@google.com/")); 7 var_dump(parse_url("http://example.com:80?@google.com/"));
|
H A D | bug68917.phpt | 2 Bug #68917 (parse_url fails on some partial urls) 5 print_r(parse_url('//example.org:81/hi?a=b#c=d')); 6 print_r(parse_url('//example.org/hi?a=b#c=d'));
|
H A D | bug54180.phpt | 2 Bug #54180 (parse_url() incorrectly parses path when ? in fragment) 6 var_dump(parse_url("http://example.com/path/script.html?t=1#fragment?data")); 7 var_dump(parse_url("http://example.com/path/script.html#fragment?data"));
|
H A D | bug55399.phpt | 2 Bug #55399 (parse_url() incorrectly treats ':' as a valid path) 6 var_dump(parse_url(":"));
|
H A D | parse_url_relative_scheme.phpt | 2 Test parse_url() function: Checks relative URL schemes (e.g. "//example.com") 5 var_dump(parse_url('//example.org'));
|
H A D | parse_url_basic_010.phpt | 2 Test parse_url() function : check values of URL related constants
|
H A D | parse_url_basic_004.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_PORT as the URL component 12 var_dump(parse_url($url, PHP_URL_PORT));
|
H A D | parse_url_basic_006.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_PASS as the URL component 12 var_dump(parse_url($url, PHP_URL_PASS));
|
H A D | parse_url_basic_002.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_SCHEME as the URL compon… 12 var_dump(parse_url($url, PHP_URL_SCHEME));
|
H A D | parse_url_basic_005.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_USER as the URL component 12 var_dump(parse_url($url, PHP_URL_USER));
|
H A D | parse_url_basic_008.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_QUERY as the URL compone… 12 var_dump(parse_url($url, PHP_URL_QUERY));
|
H A D | parse_url_basic_009.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_FRAGMENT as the URL comp… 12 var_dump(parse_url($url, PHP_URL_FRAGMENT));
|
H A D | parse_url_basic_003.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_HOST as the URL component 12 var_dump(parse_url($url, PHP_URL_HOST));
|
H A D | parse_url_basic_007.phpt | 2 Test parse_url() function: Parse a load of URLs without specifying PHP_URL_PATH as the URL component 12 var_dump(parse_url($url, PHP_URL_PATH));
|
/php-src/ext/filter/tests/ |
H A D | bug77423.phpt | 2 Bug #77423 (parse_url() will deliver a wrong host to user)
|
/php-src/ext/standard/tests/file/ |
H A D | bug38450.phpt | 17 $url = parse_url($path);
|
H A D | bug38450_1.phpt | 17 $url = parse_url($path);
|
H A D | bug38450_2.phpt | 17 $url = parse_url($path);
|
H A D | bug38450_3.phpt | 17 $url = parse_url($path);
|
H A D | include_streams.phpt | 35 $split = parse_url($path);
|
Completed in 21 milliseconds
12