3v4l.org

run code in 300+ PHP versions simultaneously
<?php $urls = array( 'http://www.website.com/path1/path2/file1.php?query1=true&query2=false', 'http://website.com/path1/path2/file1.php?query1=true&query2=false', 'http://website/path1/path2/file1.php?query1=true&query2=false', 'http://www.website.com/path1/path2/?query1=true&query2=false', 'http://website.com/path1/path2/?query1=true&query2=false', 'http://website/path1/path2/?query1=true&query2=false', 'http://www.website.com/path1/path2/', 'http://website.com/path1/path2/', 'http://website/path1/path2/', 'http://www.website.com?query1=true&query2=false', 'http://website.com?query1=true&query2=false', 'http://website?query1=true&query2=false', 'www.website.com/path1/path2/file1.php?query1=true&query2=false', 'website.com/path1/path2/file1.php?query1=true&query2=false', 'website/path1/path2/file1.php?query1=true&query2=false', 'www.website.com/path1/path2/?query1=true&query2=false', 'website.com/path1/path2/?query1=true&query2=false', 'website/path1/path2/?query1=true&query2=false', 'www.website.com/path1/path2/', 'website.com/path1/path2/', 'website/path1/path2/', 'www.website.com?query1=true&query2=false', 'website.com?query1=true&query2=false', 'website?query1=true&query2=false', 'https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false', 'https://website.com:443/path1/path2/file1.php?query1=true&query2=false', 'https://website:443/path1/path2/file1.php?query1=true&query2=false', 'https://www.website.com:443/path1/path2/?query1=true&query2=false', 'https://website.com:443/path1/path2/?query1=true&query2=false', 'https://website:443/path1/path2/?query1=true&query2=false', 'https://www.website.com:443/path1/path2/', 'https://website.com:443/path1/path2/', 'https://website:443/path1/path2/', 'https://www.website.com:443?query1=true&query2=false', 'https://website.com:443?query1=true&query2=false', 'https://website:443?query1=true&query2=false', 'www.website.com:443/path1/path2/file1.php?query1=true&query2=false', 'website.com:443/path1/path2/file1.php?query1=true&query2=false', 'website:443/path1/path2/file1.php?query1=true&query2=false', 'www.website.com:443/path1/path2/?query1=true&query2=false', 'website.com:443/path1/path2/?query1=true&query2=false', 'website:443/path1/path2/?query1=true&query2=false', 'www.website.com:443/path1/path2/', 'website.com:443/path1/path2/', 'website:443/path1/path2/', 'www.website.com:443?query1=true&query2=false', 'website.com:443?query1=true&query2=false', 'website:443?query1=true&query2=false', ); $flags = array( 'none' => null, 'scheme' => FILTER_FLAG_SCHEME_REQUIRED, 'scheme + host' => FILTER_FLAG_SCHEME_REQUIRED & FILTER_FLAG_HOST_REQUIRED, 'scheme + host + path' => FILTER_FLAG_SCHEME_REQUIRED & FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED, 'scheme + host + path + query' => FILTER_FLAG_SCHEME_REQUIRED & FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED & FILTER_FLAG_QUERY_REQUIRED, 'host' => FILTER_FLAG_HOST_REQUIRED, 'host + path' => FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED, 'host + path + query' => FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED & FILTER_FLAG_QUERY_REQUIRED, 'path' => FILTER_FLAG_PATH_REQUIRED, 'path + query' => FILTER_FLAG_PATH_REQUIRED & FILTER_FLAG_QUERY_REQUIRED, 'query' => FILTER_FLAG_QUERY_REQUIRED ); foreach($urls as $url){ foreach($flags as $k => $flag){ echo "$url => $k :\r\n"; var_dump((bool) filter_var($url, FILTER_VALIDATE_URL, $flag)); } echo "\r\n"; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "FILTER_FLAG_SCHEME_REQUIRED" in /in/st0R4:55 Stack trace: #0 {main} thrown in /in/st0R4 on line 55
Process exited with code 255.
Output for 7.3.18, 7.3.20, 7.3.23, 7.3.30, 7.4.5, 7.4.20, 7.4.23 - 7.4.29, 7.4.32 - 7.4.33
http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website/path1/path2/?query1=true&query2=false => none : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => path : bool(true) http://website/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/ => none : bool(true) http://www.website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/ => scheme + host : bool(true) http://www.website.com/path1/path2/ => scheme + host + path : bool(true) http://www.website.com/path1/path2/ => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/ => host + path : bool(true) http://www.website.com/path1/path2/ => host + path + query : bool(true) http://www.website.com/path1/path2/ => path : bool(true) http://www.website.com/path1/path2/ => path + query : bool(true) http://www.website.com/path1/path2/ => query : bool(false) http://website.com/path1/path2/ => none : bool(true) http://website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/ => scheme + host : bool(true) http://website.com/path1/path2/ => scheme + host + path : bool(true) http://website.com/path1/path2/ => scheme + host + path + query : bool(true) http://website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/ => host + path : bool(true) http://website.com/path1/path2/ => host + path + query : bool(true) http://website.com/path1/path2/ => path : bool(true) http://website.com/path1/path2/ => path + query : bool(true) http://website.com/path1/path2/ => query : bool(false) http://website/path1/path2/ => none : bool(true) http://website/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/ => scheme + host : bool(true) http://website/path1/path2/ => scheme + host + path : bool(true) http://website/path1/path2/ => scheme + host + path + query : bool(true) http://website/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/ => host + path : bool(true) http://website/path1/path2/ => host + path + query : bool(true) http://website/path1/path2/ => path : bool(true) http://website/path1/path2/ => path + query : bool(true) http://website/path1/path2/ => query : bool(false) http://www.website.com?query1=true&query2=false => none : bool(true) http://www.website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com?query1=true&query2=false => scheme + host : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com?query1=true&query2=false => host + path : bool(true) http://www.website.com?query1=true&query2=false => host + path + query : bool(true) http://www.website.com?query1=true&query2=false => path : bool(false) http://www.website.com?query1=true&query2=false => path + query : bool(true) http://www.website.com?query1=true&query2=false => query : bool(true) http://website.com?query1=true&query2=false => none : bool(true) http://website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com?query1=true&query2=false => scheme + host : bool(true) http://website.com?query1=true&query2=false => scheme + host + path : bool(true) http://website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com?query1=true&query2=false => host + path : bool(true) http://website.com?query1=true&query2=false => host + path + query : bool(true) http://website.com?query1=true&query2=false => path : bool(false) http://website.com?query1=true&query2=false => path + query : bool(true) http://website.com?query1=true&query2=false => query : bool(true) http://website?query1=true&query2=false => none : bool(true) http://website?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website?query1=true&query2=false => scheme + host : bool(true) http://website?query1=true&query2=false => scheme + host + path : bool(true) http://website?query1=true&query2=false => scheme + host + path + query : bool(true) http://website?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website?query1=true&query2=false => host + path : bool(true) http://website?query1=true&query2=false => host + path + query : bool(true) http://website?query1=true&query2=false => path : bool(false) http://website?query1=true&query2=false => path + query : bool(true) http://website?query1=true&query2=false => query : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => query : bool(false) website.com/path1/path2/?query1=true&query2=false => none : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => path : bool(false) website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => query : bool(false) website/path1/path2/?query1=true&query2=false => none : bool(false) website/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/?query1=true&query2=false => host + path : bool(false) website/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => path : bool(false) website/path1/path2/?query1=true&query2=false => path + query : bool(false) website/path1/path2/?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/ => none : bool(false) www.website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/ => scheme + host : bool(false) www.website.com/path1/path2/ => scheme + host + path : bool(false) www.website.com/path1/path2/ => scheme + host + path + query : bool(false) www.website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/ => host + path : bool(false) www.website.com/path1/path2/ => host + path + query : bool(false) www.website.com/path1/path2/ => path : bool(false) www.website.com/path1/path2/ => path + query : bool(false) www.website.com/path1/path2/ => query : bool(false) website.com/path1/path2/ => none : bool(false) website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/ => scheme + host : bool(false) website.com/path1/path2/ => scheme + host + path : bool(false) website.com/path1/path2/ => scheme + host + path + query : bool(false) website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/ => host + path : bool(false) website.com/path1/path2/ => host + path + query : bool(false) website.com/path1/path2/ => path : bool(false) website.com/path1/path2/ => path + query : bool(false) website.com/path1/path2/ => query : bool(false) website/path1/path2/ => none : bool(false) website/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/ => scheme + host : bool(false) website/path1/path2/ => scheme + host + path : bool(false) website/path1/path2/ => scheme + host + path + query : bool(false) website/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/ => host + path : bool(false) website/path1/path2/ => host + path + query : bool(false) website/path1/path2/ => path : bool(false) website/path1/path2/ => path + query : bool(false) website/path1/path2/ => query : bool(false) www.website.com?query1=true&query2=false => none : bool(false) www.website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com?query1=true&query2=false => scheme + host : bool(false) www.website.com?query1=true&query2=false => scheme + host + path : bool(false) www.website.com?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com?query1=true&query2=false => host + path : bool(false) www.website.com?query1=true&query2=false => host + path + query : bool(false) www.website.com?query1=true&query2=false => path : bool(false) www.website.com?query1=true&query2=false => path + query : bool(false) www.website.com?query1=true&query2=false => query : bool(false) website.com?query1=true&query2=false => none : bool(false) website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com?query1=true&query2=false => scheme + host : bool(false) website.com?query1=true&query2=false => scheme + host + path : bool(false) website.com?query1=true&query2=false => scheme + host + path + query : bool(false) website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com?query1=true&query2=false => host + path : bool(false) website.com?query1=true&query2=false => host + path + query : bool(false) website.com?query1=true&query2=false => path : bool(false) website.com?query1=true&query2=false => path + query : bool(false) website.com?query1=true&query2=false => query : bool(false) website?query1=true&query2=false => none : bool(false) website?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website?query1=true&query2=false => scheme + host : bool(false) website?query1=true&query2=false => scheme + host + path : bool(false) website?query1=true&query2=false => scheme + host + path + query : bool(false) website?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website?query1=true&query2=false => host + path : bool(false) website?query1=true&query2=false => host + path + query : bool(false) website?query1=true&query2=false => path : bool(false) website?query1=true&query2=false => path + query : bool(false) website?query1=true&query2=false => query : bool(false) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/?
Process exited with code 137.
Output for 7.3.12 - 7.3.17, 7.3.19, 7.3.21, 7.3.24 - 7.3.29, 7.3.31, 7.4.0 - 7.4.4, 7.4.6 - 7.4.19, 7.4.21 - 7.4.22, 7.4.30
http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website/path1/path2/?query1=true&query2=false => none : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => path : bool(true) http://website/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/ => none : bool(true) http://www.website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/ => scheme + host : bool(true) http://www.website.com/path1/path2/ => scheme + host + path : bool(true) http://www.website.com/path1/path2/ => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com/path1/path2/ => host + path : bool(true) http://www.website.com/path1/path2/ => host + path + query : bool(true) http://www.website.com/path1/path2/ => path : bool(true) http://www.website.com/path1/path2/ => path + query : bool(true) http://www.website.com/path1/path2/ => query : bool(false) http://website.com/path1/path2/ => none : bool(true) http://website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/ => scheme + host : bool(true) http://website.com/path1/path2/ => scheme + host + path : bool(true) http://website.com/path1/path2/ => scheme + host + path + query : bool(true) http://website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com/path1/path2/ => host + path : bool(true) http://website.com/path1/path2/ => host + path + query : bool(true) http://website.com/path1/path2/ => path : bool(true) http://website.com/path1/path2/ => path + query : bool(true) http://website.com/path1/path2/ => query : bool(false) http://website/path1/path2/ => none : bool(true) http://website/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/ => scheme + host : bool(true) http://website/path1/path2/ => scheme + host + path : bool(true) http://website/path1/path2/ => scheme + host + path + query : bool(true) http://website/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website/path1/path2/ => host + path : bool(true) http://website/path1/path2/ => host + path + query : bool(true) http://website/path1/path2/ => path : bool(true) http://website/path1/path2/ => path + query : bool(true) http://website/path1/path2/ => query : bool(false) http://www.website.com?query1=true&query2=false => none : bool(true) http://www.website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com?query1=true&query2=false => scheme + host : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://www.website.com?query1=true&query2=false => host + path : bool(true) http://www.website.com?query1=true&query2=false => host + path + query : bool(true) http://www.website.com?query1=true&query2=false => path : bool(false) http://www.website.com?query1=true&query2=false => path + query : bool(true) http://www.website.com?query1=true&query2=false => query : bool(true) http://website.com?query1=true&query2=false => none : bool(true) http://website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com?query1=true&query2=false => scheme + host : bool(true) http://website.com?query1=true&query2=false => scheme + host + path : bool(true) http://website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website.com?query1=true&query2=false => host + path : bool(true) http://website.com?query1=true&query2=false => host + path + query : bool(true) http://website.com?query1=true&query2=false => path : bool(false) http://website.com?query1=true&query2=false => path + query : bool(true) http://website.com?query1=true&query2=false => query : bool(true) http://website?query1=true&query2=false => none : bool(true) http://website?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website?query1=true&query2=false => scheme + host : bool(true) http://website?query1=true&query2=false => scheme + host + path : bool(true) http://website?query1=true&query2=false => scheme + host + path + query : bool(true) http://website?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) http://website?query1=true&query2=false => host + path : bool(true) http://website?query1=true&query2=false => host + path + query : bool(true) http://website?query1=true&query2=false => path : bool(false) http://website?query1=true&query2=false => path + query : bool(true) http://website?query1=true&query2=false => query : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => query : bool(false) website.com/path1/path2/?query1=true&query2=false => none : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => path : bool(false) website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => query : bool(false) website/path1/path2/?query1=true&query2=false => none : bool(false) website/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/?query1=true&query2=false => host + path : bool(false) website/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => path : bool(false) website/path1/path2/?query1=true&query2=false => path + query : bool(false) website/path1/path2/?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/ => none : bool(false) www.website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/ => scheme + host : bool(false) www.website.com/path1/path2/ => scheme + host + path : bool(false) www.website.com/path1/path2/ => scheme + host + path + query : bool(false) www.website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com/path1/path2/ => host + path : bool(false) www.website.com/path1/path2/ => host + path + query : bool(false) www.website.com/path1/path2/ => path : bool(false) www.website.com/path1/path2/ => path + query : bool(false) www.website.com/path1/path2/ => query : bool(false) website.com/path1/path2/ => none : bool(false) website.com/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/ => scheme + host : bool(false) website.com/path1/path2/ => scheme + host + path : bool(false) website.com/path1/path2/ => scheme + host + path + query : bool(false) website.com/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com/path1/path2/ => host + path : bool(false) website.com/path1/path2/ => host + path + query : bool(false) website.com/path1/path2/ => path : bool(false) website.com/path1/path2/ => path + query : bool(false) website.com/path1/path2/ => query : bool(false) website/path1/path2/ => none : bool(false) website/path1/path2/ => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/ => scheme + host : bool(false) website/path1/path2/ => scheme + host + path : bool(false) website/path1/path2/ => scheme + host + path + query : bool(false) website/path1/path2/ => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website/path1/path2/ => host + path : bool(false) website/path1/path2/ => host + path + query : bool(false) website/path1/path2/ => path : bool(false) website/path1/path2/ => path + query : bool(false) website/path1/path2/ => query : bool(false) www.website.com?query1=true&query2=false => none : bool(false) www.website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com?query1=true&query2=false => scheme + host : bool(false) www.website.com?query1=true&query2=false => scheme + host + path : bool(false) www.website.com?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) www.website.com?query1=true&query2=false => host + path : bool(false) www.website.com?query1=true&query2=false => host + path + query : bool(false) www.website.com?query1=true&query2=false => path : bool(false) www.website.com?query1=true&query2=false => path + query : bool(false) www.website.com?query1=true&query2=false => query : bool(false) website.com?query1=true&query2=false => none : bool(false) website.com?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com?query1=true&query2=false => scheme + host : bool(false) website.com?query1=true&query2=false => scheme + host + path : bool(false) website.com?query1=true&query2=false => scheme + host + path + query : bool(false) website.com?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website.com?query1=true&query2=false => host + path : bool(false) website.com?query1=true&query2=false => host + path + query : bool(false) website.com?query1=true&query2=false => path : bool(false) website.com?query1=true&query2=false => path + query : bool(false) website.com?query1=true&query2=false => query : bool(false) website?query1=true&query2=false => none : bool(false) website?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website?query1=true&query2=false => scheme + host : bool(false) website?query1=true&query2=false => scheme + host + path : bool(false) website?query1=true&query2=false => scheme + host + path + query : bool(false) website?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(false) website?query1=true&query2=false => host + path : bool(false) website?query1=true&query2=false => host + path + query : bool(false) website?query1=true&query2=false => path : bool(false) website?query1=true&query2=false => path + query : bool(false) website?query1=true&query2=false => query : bool(false) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme : Deprecated: filter_var(): explicit use of FILTER_FLAG_SCHEME_REQUIRED and FILTER_FLAG_HOST_REQUIRED is deprecated in /in/st0R4 on line 70 bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/?
Output for 7.0.20, 7.1.7, 7.2.0, 7.3.32 - 7.3.33
http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website/path1/path2/?query1=true&query2=false => none : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => host : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => path : bool(true) http://website/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/ => none : bool(true) http://www.website.com/path1/path2/ => scheme : bool(true) http://www.website.com/path1/path2/ => scheme + host : bool(true) http://www.website.com/path1/path2/ => scheme + host + path : bool(true) http://www.website.com/path1/path2/ => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/ => host : bool(true) http://www.website.com/path1/path2/ => host + path : bool(true) http://www.website.com/path1/path2/ => host + path + query : bool(true) http://www.website.com/path1/path2/ => path : bool(true) http://www.website.com/path1/path2/ => path + query : bool(true) http://www.website.com/path1/path2/ => query : bool(false) http://website.com/path1/path2/ => none : bool(true) http://website.com/path1/path2/ => scheme : bool(true) http://website.com/path1/path2/ => scheme + host : bool(true) http://website.com/path1/path2/ => scheme + host + path : bool(true) http://website.com/path1/path2/ => scheme + host + path + query : bool(true) http://website.com/path1/path2/ => host : bool(true) http://website.com/path1/path2/ => host + path : bool(true) http://website.com/path1/path2/ => host + path + query : bool(true) http://website.com/path1/path2/ => path : bool(true) http://website.com/path1/path2/ => path + query : bool(true) http://website.com/path1/path2/ => query : bool(false) http://website/path1/path2/ => none : bool(true) http://website/path1/path2/ => scheme : bool(true) http://website/path1/path2/ => scheme + host : bool(true) http://website/path1/path2/ => scheme + host + path : bool(true) http://website/path1/path2/ => scheme + host + path + query : bool(true) http://website/path1/path2/ => host : bool(true) http://website/path1/path2/ => host + path : bool(true) http://website/path1/path2/ => host + path + query : bool(true) http://website/path1/path2/ => path : bool(true) http://website/path1/path2/ => path + query : bool(true) http://website/path1/path2/ => query : bool(false) http://www.website.com?query1=true&query2=false => none : bool(true) http://www.website.com?query1=true&query2=false => scheme : bool(true) http://www.website.com?query1=true&query2=false => scheme + host : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com?query1=true&query2=false => host : bool(true) http://www.website.com?query1=true&query2=false => host + path : bool(true) http://www.website.com?query1=true&query2=false => host + path + query : bool(true) http://www.website.com?query1=true&query2=false => path : bool(false) http://www.website.com?query1=true&query2=false => path + query : bool(true) http://www.website.com?query1=true&query2=false => query : bool(true) http://website.com?query1=true&query2=false => none : bool(true) http://website.com?query1=true&query2=false => scheme : bool(true) http://website.com?query1=true&query2=false => scheme + host : bool(true) http://website.com?query1=true&query2=false => scheme + host + path : bool(true) http://website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com?query1=true&query2=false => host : bool(true) http://website.com?query1=true&query2=false => host + path : bool(true) http://website.com?query1=true&query2=false => host + path + query : bool(true) http://website.com?query1=true&query2=false => path : bool(false) http://website.com?query1=true&query2=false => path + query : bool(true) http://website.com?query1=true&query2=false => query : bool(true) http://website?query1=true&query2=false => none : bool(true) http://website?query1=true&query2=false => scheme : bool(true) http://website?query1=true&query2=false => scheme + host : bool(true) http://website?query1=true&query2=false => scheme + host + path : bool(true) http://website?query1=true&query2=false => scheme + host + path + query : bool(true) http://website?query1=true&query2=false => host : bool(true) http://website?query1=true&query2=false => host + path : bool(true) http://website?query1=true&query2=false => host + path + query : bool(true) http://website?query1=true&query2=false => path : bool(false) http://website?query1=true&query2=false => path + query : bool(true) http://website?query1=true&query2=false => query : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => query : bool(false) website.com/path1/path2/?query1=true&query2=false => none : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => host : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => path : bool(false) website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => query : bool(false) website/path1/path2/?query1=true&query2=false => none : bool(false) website/path1/path2/?query1=true&query2=false => scheme : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => host : bool(false) website/path1/path2/?query1=true&query2=false => host + path : bool(false) website/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => path : bool(false) website/path1/path2/?query1=true&query2=false => path + query : bool(false) website/path1/path2/?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/ => none : bool(false) www.website.com/path1/path2/ => scheme : bool(false) www.website.com/path1/path2/ => scheme + host : bool(false) www.website.com/path1/path2/ => scheme + host + path : bool(false) www.website.com/path1/path2/ => scheme + host + path + query : bool(false) www.website.com/path1/path2/ => host : bool(false) www.website.com/path1/path2/ => host + path : bool(false) www.website.com/path1/path2/ => host + path + query : bool(false) www.website.com/path1/path2/ => path : bool(false) www.website.com/path1/path2/ => path + query : bool(false) www.website.com/path1/path2/ => query : bool(false) website.com/path1/path2/ => none : bool(false) website.com/path1/path2/ => scheme : bool(false) website.com/path1/path2/ => scheme + host : bool(false) website.com/path1/path2/ => scheme + host + path : bool(false) website.com/path1/path2/ => scheme + host + path + query : bool(false) website.com/path1/path2/ => host : bool(false) website.com/path1/path2/ => host + path : bool(false) website.com/path1/path2/ => host + path + query : bool(false) website.com/path1/path2/ => path : bool(false) website.com/path1/path2/ => path + query : bool(false) website.com/path1/path2/ => query : bool(false) website/path1/path2/ => none : bool(false) website/path1/path2/ => scheme : bool(false) website/path1/path2/ => scheme + host : bool(false) website/path1/path2/ => scheme + host + path : bool(false) website/path1/path2/ => scheme + host + path + query : bool(false) website/path1/path2/ => host : bool(false) website/path1/path2/ => host + path : bool(false) website/path1/path2/ => host + path + query : bool(false) website/path1/path2/ => path : bool(false) website/path1/path2/ => path + query : bool(false) website/path1/path2/ => query : bool(false) www.website.com?query1=true&query2=false => none : bool(false) www.website.com?query1=true&query2=false => scheme : bool(false) www.website.com?query1=true&query2=false => scheme + host : bool(false) www.website.com?query1=true&query2=false => scheme + host + path : bool(false) www.website.com?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com?query1=true&query2=false => host : bool(false) www.website.com?query1=true&query2=false => host + path : bool(false) www.website.com?query1=true&query2=false => host + path + query : bool(false) www.website.com?query1=true&query2=false => path : bool(false) www.website.com?query1=true&query2=false => path + query : bool(false) www.website.com?query1=true&query2=false => query : bool(false) website.com?query1=true&query2=false => none : bool(false) website.com?query1=true&query2=false => scheme : bool(false) website.com?query1=true&query2=false => scheme + host : bool(false) website.com?query1=true&query2=false => scheme + host + path : bool(false) website.com?query1=true&query2=false => scheme + host + path + query : bool(false) website.com?query1=true&query2=false => host : bool(false) website.com?query1=true&query2=false => host + path : bool(false) website.com?query1=true&query2=false => host + path + query : bool(false) website.com?query1=true&query2=false => path : bool(false) website.com?query1=true&query2=false => path + query : bool(false) website.com?query1=true&query2=false => query : bool(false) website?query1=true&query2=false => none : bool(false) website?query1=true&query2=false => scheme : bool(false) website?query1=true&query2=false => scheme + host : bool(false) website?query1=true&query2=false => scheme + host + path : bool(false) website?query1=true&query2=false => scheme + host + path + query : bool(false) website?query1=true&query2=false => host : bool(false) website?query1=true&query2=false => host + path : bool(false) website?query1=true&query2=false => host + path + query : bool(false) website?query1=true&query2=false => path : bool(false) website?query1=true&query2=false => path + query : bool(false) website?query1=true&query2=false => query : bool(false) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => host : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => path : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => none : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => host : bool(true) https://website:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://website:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => path : bool(true) https://website:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => query : bool(true) https://www.website.com:443/path1/path2/ => none : bool(true) https://www.website.com:443/path1/path2/ => scheme : bool(true) https://www.website.com:443/path1/path2/ => scheme + host : bool(true) https://www.website.com:443/path1/path2/ => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/ => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/ => host : bool(true) https://www.website.com:443/path1/path2/ => host + path : bool(true) https://www.website.com:443/path1/path2/ => host + path + query : bool(true) https://www.website.com:443/path1/path2/ => path : bool(true) https://www.website.com:443/path1/path2/ => path + query : bool(true) https://www.website.com:443/path1/path2/ => query : bool(false) https://website.com:443/path1/path2/ => none : bool(true) https://website.com:443/path1/path2/ => scheme : bool(true) https://website.com:443/path1/path2/ => scheme + host : bool(true) https://website.com:443/path1/path2/ => scheme + host + path : bool(true) https://website.com:443/path1/path2/ => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/ => host : bool(true) https://website.com:443/path1/path2/ => host + path : bool(true) https://website.com:443/path1/path2/ => host + path + query : bool(true) https://website.com:443/path1/path2/ => path : bool(true) https://website.com:443/path1/path2/ => path + query : bool(true) https://website.com:443/path1/path2/ => query : bool(false) https://website:443/path1/path2/ => none : bool(true) https://website:443/path1/path2/ => scheme : bool(true) https://website:443/path1/path2/ => scheme + host : bool(true) https://website:443/path1/path2/ => scheme + host + path : bool(true) https://website:443/path1/path2/ => scheme + host + path + query : bool(true) https://website:443/path1/path2/ => host : bool(true) https://website:443/path1/path2/ => host + path : bool(true) https://website:443/path1/path2/ => host + path + query : bool(true) https://website:443/path1/path2/ => path : bool(true) https://website:443/path1/path2/ => path + query : bool(true) https://website:443/path1/path2/ => query : bool(false) https://www.website.com:443?query1=true&query2=false => none : bool(true) https://www.website.com:443?query1=true&query2=false => scheme : bool(true) https://www.website.com:443?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443?query1=true&query2=false => host : bool(true) https://www.website.com:443?query1=true&query2=false => host + path : bool(true) https://www.website.com:443?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443?query1=true&query2=false => path : bool(false) https://www.website.com:443?query1=true&query2=false => path + query : bool(true) https://www.website.com:443?query1=true&query2=false => query : bool(true) https://website.com:443?query1=true&query2=false => none : bool(true) https://website.com:443?query1=true&query2=false => scheme : bool(true) https://website.com:443?query1=true&query2=false => scheme + host : bool(true) https://website.com:443?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443?query1=true&query2=false => host : bool(true) https://website.com:443?query1=true&query2=false => host + path : bool(true) https://website.com:443?query1=true&query2=false => host + path + query : bool(true) https://website.com:443?query1=true&query2=false => path : bool(false) https://website.com:443?query1=true&query2=false => path + query : bool(true) https://website.com:443?query1=true&query2=false => query : bool(true) https://website:443?query1=true&query2=false => none : bool(true) https://website:443?query1=true&query2=false => scheme : bool(true) https://website:443?query1=true&query2=false => scheme + host : bool(true) https://website:443?query1=true&query2=false => scheme + host + path : bool(true) https://website:443?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443?query1=true&query2=false => host : bool(true) https://website:443?query1=true&query2=false => host + path : bool(true) https://website:443?query1=true&query2=false => host + path + query : bool(true) https://website:443?query1=true&query2=false => path : bool(false) https://website:443?query1=true&query2=false => path + query : bool(true) https://website:443?query1=true&query2=false => query : bool(true) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) websit
Process exited with code 137.
Output for 7.1.5 - 7.1.6, 7.1.10, 7.2.29 - 7.2.33
http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website/path1/path2/?query1=true&query2=false => none : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => host : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => path : bool(true) http://website/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/ => none : bool(true) http://www.website.com/path1/path2/ => scheme : bool(true) http://www.website.com/path1/path2/ => scheme + host : bool(true) http://www.website.com/path1/path2/ => scheme + host + path : bool(true) http://www.website.com/path1/path2/ => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/ => host : bool(true) http://www.website.com/path1/path2/ => host + path : bool(true) http://www.website.com/path1/path2/ => host + path + query : bool(true) http://www.website.com/path1/path2/ => path : bool(true) http://www.website.com/path1/path2/ => path + query : bool(true) http://www.website.com/path1/path2/ => query : bool(false) http://website.com/path1/path2/ => none : bool(true) http://website.com/path1/path2/ => scheme : bool(true) http://website.com/path1/path2/ => scheme + host : bool(true) http://website.com/path1/path2/ => scheme + host + path : bool(true) http://website.com/path1/path2/ => scheme + host + path + query : bool(true) http://website.com/path1/path2/ => host : bool(true) http://website.com/path1/path2/ => host + path : bool(true) http://website.com/path1/path2/ => host + path + query : bool(true) http://website.com/path1/path2/ => path : bool(true) http://website.com/path1/path2/ => path + query : bool(true) http://website.com/path1/path2/ => query : bool(false) http://website/path1/path2/ => none : bool(true) http://website/path1/path2/ => scheme : bool(true) http://website/path1/path2/ => scheme + host : bool(true) http://website/path1/path2/ => scheme + host + path : bool(true) http://website/path1/path2/ => scheme + host + path + query : bool(true) http://website/path1/path2/ => host : bool(true) http://website/path1/path2/ => host + path : bool(true) http://website/path1/path2/ => host + path + query : bool(true) http://website/path1/path2/ => path : bool(true) http://website/path1/path2/ => path + query : bool(true) http://website/path1/path2/ => query : bool(false) http://www.website.com?query1=true&query2=false => none : bool(true) http://www.website.com?query1=true&query2=false => scheme : bool(true) http://www.website.com?query1=true&query2=false => scheme + host : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com?query1=true&query2=false => host : bool(true) http://www.website.com?query1=true&query2=false => host + path : bool(true) http://www.website.com?query1=true&query2=false => host + path + query : bool(true) http://www.website.com?query1=true&query2=false => path : bool(false) http://www.website.com?query1=true&query2=false => path + query : bool(true) http://www.website.com?query1=true&query2=false => query : bool(true) http://website.com?query1=true&query2=false => none : bool(true) http://website.com?query1=true&query2=false => scheme : bool(true) http://website.com?query1=true&query2=false => scheme + host : bool(true) http://website.com?query1=true&query2=false => scheme + host + path : bool(true) http://website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com?query1=true&query2=false => host : bool(true) http://website.com?query1=true&query2=false => host + path : bool(true) http://website.com?query1=true&query2=false => host + path + query : bool(true) http://website.com?query1=true&query2=false => path : bool(false) http://website.com?query1=true&query2=false => path + query : bool(true) http://website.com?query1=true&query2=false => query : bool(true) http://website?query1=true&query2=false => none : bool(true) http://website?query1=true&query2=false => scheme : bool(true) http://website?query1=true&query2=false => scheme + host : bool(true) http://website?query1=true&query2=false => scheme + host + path : bool(true) http://website?query1=true&query2=false => scheme + host + path + query : bool(true) http://website?query1=true&query2=false => host : bool(true) http://website?query1=true&query2=false => host + path : bool(true) http://website?query1=true&query2=false => host + path + query : bool(true) http://website?query1=true&query2=false => path : bool(false) http://website?query1=true&query2=false => path + query : bool(true) http://website?query1=true&query2=false => query : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => query : bool(false) website.com/path1/path2/?query1=true&query2=false => none : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => host : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => path : bool(false) website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => query : bool(false) website/path1/path2/?query1=true&query2=false => none : bool(false) website/path1/path2/?query1=true&query2=false => scheme : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => host : bool(false) website/path1/path2/?query1=true&query2=false => host + path : bool(false) website/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => path : bool(false) website/path1/path2/?query1=true&query2=false => path + query : bool(false) website/path1/path2/?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/ => none : bool(false) www.website.com/path1/path2/ => scheme : bool(false) www.website.com/path1/path2/ => scheme + host : bool(false) www.website.com/path1/path2/ => scheme + host + path : bool(false) www.website.com/path1/path2/ => scheme + host + path + query : bool(false) www.website.com/path1/path2/ => host : bool(false) www.website.com/path1/path2/ => host + path : bool(false) www.website.com/path1/path2/ => host + path + query : bool(false) www.website.com/path1/path2/ => path : bool(false) www.website.com/path1/path2/ => path + query : bool(false) www.website.com/path1/path2/ => query : bool(false) website.com/path1/path2/ => none : bool(false) website.com/path1/path2/ => scheme : bool(false) website.com/path1/path2/ => scheme + host : bool(false) website.com/path1/path2/ => scheme + host + path : bool(false) website.com/path1/path2/ => scheme + host + path + query : bool(false) website.com/path1/path2/ => host : bool(false) website.com/path1/path2/ => host + path : bool(false) website.com/path1/path2/ => host + path + query : bool(false) website.com/path1/path2/ => path : bool(false) website.com/path1/path2/ => path + query : bool(false) website.com/path1/path2/ => query : bool(false) website/path1/path2/ => none : bool(false) website/path1/path2/ => scheme : bool(false) website/path1/path2/ => scheme + host : bool(false) website/path1/path2/ => scheme + host + path : bool(false) website/path1/path2/ => scheme + host + path + query : bool(false) website/path1/path2/ => host : bool(false) website/path1/path2/ => host + path : bool(false) website/path1/path2/ => host + path + query : bool(false) website/path1/path2/ => path : bool(false) website/path1/path2/ => path + query : bool(false) website/path1/path2/ => query : bool(false) www.website.com?query1=true&query2=false => none : bool(false) www.website.com?query1=true&query2=false => scheme : bool(false) www.website.com?query1=true&query2=false => scheme + host : bool(false) www.website.com?query1=true&query2=false => scheme + host + path : bool(false) www.website.com?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com?query1=true&query2=false => host : bool(false) www.website.com?query1=true&query2=false => host + path : bool(false) www.website.com?query1=true&query2=false => host + path + query : bool(false) www.website.com?query1=true&query2=false => path : bool(false) www.website.com?query1=true&query2=false => path + query : bool(false) www.website.com?query1=true&query2=false => query : bool(false) website.com?query1=true&query2=false => none : bool(false) website.com?query1=true&query2=false => scheme : bool(false) website.com?query1=true&query2=false => scheme + host : bool(false) website.com?query1=true&query2=false => scheme + host + path : bool(false) website.com?query1=true&query2=false => scheme + host + path + query : bool(false) website.com?query1=true&query2=false => host : bool(false) website.com?query1=true&query2=false => host + path : bool(false) website.com?query1=true&query2=false => host + path + query : bool(false) website.com?query1=true&query2=false => path : bool(false) website.com?query1=true&query2=false => path + query : bool(false) website.com?query1=true&query2=false => query : bool(false) website?query1=true&query2=false => none : bool(false) website?query1=true&query2=false => scheme : bool(false) website?query1=true&query2=false => scheme + host : bool(false) website?query1=true&query2=false => scheme + host + path : bool(false) website?query1=true&query2=false => scheme + host + path + query : bool(false) website?query1=true&query2=false => host : bool(false) website?query1=true&query2=false => host + path : bool(false) website?query1=true&query2=false => host + path + query : bool(false) website?query1=true&query2=false => path : bool(false) website?query1=true&query2=false => path + query : bool(false) website?query1=true&query2=false => query : bool(false) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => none : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) https://website:443/path1/path2/file1.php?query1=true&query2=false => query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://www.website.com:443/path1/path2/?query1=true&query2=false => query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => none : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => host : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => path : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://website.com:443/path1/path2/?query1=true&query2=false => query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => none : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme + host : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) https://website:443/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => host : bool(true) https://website:443/path1/path2/?query1=true&query2=false => host + path : bool(true) https://website:443/path1/path2/?query1=true&query2=false => host + path + query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => path : bool(true) https://website:443/path1/path2/?query1=true&query2=false => path + query : bool(true) https://website:443/path1/path2/?query1=true&query2=false => query : bool(true) https://www.website.com:443/path1/path2/ => none : bool(true) https://www.website.com:443/path1/path2/ => scheme : bool(true) https://www.website.com:443/path1/path2/ => scheme + host : bool(true) https://www.website.com:443/path1/path2/ => scheme + host + path : bool(true) https://www.website.com:443/path1/path2/ => scheme + host + path + query : bool(true) https://www.website.com:443/path1/path2/ => host : bool(true) https://www.website.com:443/path1/path2/ => host + path : bool(true) https://www.website.com:443/path1/path2/ => host + path + query : bool(true) https://www.website.com:443/path1/path2/ => path : bool(true) https://www.website.com:443/path1/path2/ => path + query : bool(true) https://www.website.com:443/path1/path2/ => query : bool(false) https://website.com:443/path1/path2/ => none : bool(true) https://website.com:443/path1/path2/ => scheme : bool(true) https://website.com:443/path1/path2/ => scheme + host : bool(true) https://website.com:443/path1/path2/ => scheme + host + path : bool(true) https://website.com:443/path1/path2/ => scheme + host + path + query : bool(true) https://website.com:443/path1/path2/ => host : bool(true) https://website.com:443/path1/path2/ => host + path : bool(true) https://website.com:443/path1/path2/ => host + path + query : bool(true) https://website.com:443/path1/path2/ => path : bool(true) https://website.com:443/path1/path2/ => path + query : bool(true) https://website.com:443/path1/path2/ => query : bool(false) https://website:443/path1/path2/ => none : bool(true) https://website:443/path1/path2/ => scheme : bool(true) https://website:443/path1/path2/ => scheme + host : bool(true) https://website:443/path1/path2/ => scheme + host + path : bool(true) https://website:443/path1/path2/ => scheme + host + path + query : bool(true) https://website:443/path1/path2/ => host : bool(true) https://website:443/path1/path2/ => host + path : bool(true) https://website:443/path1/path2/ => host + path + query : bool(true) https://website:443/path1/path2/ => path : bool(true) https://website:443/path1/path2/ => path + query : bool(true) https://website:443/path1/path2/ => query : bool(false) https://www.website.com:443?query1=true&query2=false => none : bool(true) https://www.website.com:443?query1=true&query2=false => scheme : bool(true) https://www.website.com:443?query1=true&query2=false => scheme + host : bool(true) https://www.website.com:443?query1=true&query2=false => scheme + host + path : bool(true) https://www.website.com:443?query1=true&query2=false => scheme + host + path + query : bool(true) https://www.website.com:443?query1=true&query2=false => host : bool(true) https://www.website.com:443?query1=true&query2=false => host + path : bool(true) https://www.website.com:443?query1=true&query2=false => host + path + query : bool(true) https://www.website.com:443?query1=true&query2=false => path : bool(false) https://www.website.com:443?query1=true&query2=false => path + query : bool(true) https://www.website.com:443?query1=true&query2=false => query : bool(true) https://website.com:443?query1=true&query2=false => none : bool(true) https://website.com:443?query1=true&query2=false => scheme : bool(true) https://website.com:443?query1=true&query2=false => scheme + host : bool(true) https://website.com:443?query1=true&query2=false => scheme + host + path : bool(true) https://website.com:443?query1=true&query2=false => scheme + host + path + query : bool(true) https://website.com:443?query1=true&query2=false => host : bool(true) https://website.com:443?query1=true&query2=false => host + path : bool(true) https://website.com:443?query1=true&query2=false => host + path + query : bool(true) https://website.com:443?query1=true&query2=false => path : bool(false) https://website.com:443?query1=true&query2=false => path + query : bool(true) https://website.com:443?query1=true&query2=false => query : bool(true) https://website:443?query1=true&query2=false => none : bool(true) https://website:443?query1=true&query2=false => scheme : bool(true) https://website:443?query1=true&query2=false => scheme + host : bool(true) https://website:443?query1=true&query2=false => scheme + host + path : bool(true) https://website:443?query1=true&query2=false => scheme + host + path + query : bool(true) https://website:443?query1=true&query2=false => host : bool(true) https://website:443?query1=true&query2=false => host + path : bool(true) https://website:443?query1=true&query2=false => host + path + query : bool(true) https://website:443?query1=true&query2=false => path : bool(false) https://website:443?query1=true&query2=false => path + query : bool(true) https://website:443?query1=true&query2=false => query : bool(true) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) www.website.com:443/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website.com:443/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) websit

preferences:
153.33 ms | 470 KiB | 148 Q