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"; } //test
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/jZjF6:55 Stack trace: #0 {main} thrown in /in/jZjF6 on line 55
Process exited with code 255.
Output for 7.3.16 - 7.3.24, 7.3.26 - 7.3.28, 7.3.30, 7.4.6 - 7.4.7, 7.4.9 - 7.4.12, 7.4.14 - 7.4.16, 7.4.21, 7.4.24 - 7.4.25, 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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.3.25, 7.3.29, 7.3.31, 7.4.3 - 7.4.5, 7.4.8, 7.4.13, 7.4.19 - 7.4.20, 7.4.22 - 7.4.23, 7.4.26 - 7.4.32
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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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/jZjF6 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 5.4.33 - 5.4.38, 5.4.41 - 5.4.44, 5.5.18, 5.5.20, 5.5.22 - 5.5.23, 5.5.25 - 5.5.31, 5.5.33, 5.5.35 - 5.5.38, 5.6.2 - 5.6.12, 5.6.14 - 5.6.17, 5.6.19, 5.6.21 - 5.6.24, 5.6.26 - 5.6.27, 5.6.30 - 5.6.34, 5.6.37, 7.0.0 - 7.0.3, 7.0.5 - 7.0.7, 7.0.9 - 7.0.10, 7.0.12 - 7.0.14, 7.0.16, 7.0.18 - 7.0.19, 7.0.21 - 7.0.25, 7.0.27 - 7.0.31, 7.1.1, 7.1.4 - 7.1.13, 7.1.17, 7.1.19 - 7.1.22, 7.2.0, 7.2.2 - 7.2.3, 7.2.5 - 7.2.7, 7.2.29 - 7.2.33, 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
Output for 5.4.39 - 5.4.40, 5.4.45, 5.5.17, 5.5.19, 5.5.21, 5.5.24, 5.5.32, 5.5.34, 5.6.1, 5.6.13, 5.6.18, 5.6.20, 5.6.25, 5.6.28 - 5.6.29, 5.6.35 - 5.6.36, 5.6.38, 7.0.4, 7.0.8, 7.0.11, 7.0.15, 7.0.17, 7.0.20, 7.0.26, 7.1.0, 7.1.2 - 7.1.3, 7.1.14 - 7.1.16, 7.1.18, 7.2.1, 7.2.4, 7.2.8 - 7.2.10, 7.3.32
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.

preferences:
344.9 ms | 442 KiB | 279 Q