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', ); $flags = array( 'none' => null, 'scheme' => FILTER_FLAG_SCHEME_REQUIRED, 'scheme + host' => FILTER_FLAG_SCHEME_REQUIRED & FILTER_FLAG_HOST_REQUIRED, 'scheme + host + path' => FILTER_FLAG_SCHEME_REQUIRED & FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED, 'scheme + host + path + query' => FILTER_FLAG_SCHEME_REQUIRED & FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED & FILTER_FLAG_QUERY_REQUIRED, 'host' => FILTER_FLAG_HOST_REQUIRED, 'host + path' => FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED, 'host + path + query' => FILTER_FLAG_HOST_REQUIRED & FILTER_FLAG_PATH_REQUIRED & FILTER_FLAG_QUERY_REQUIRED, 'path' => FILTER_FLAG_PATH_REQUIRED, 'path + query' => FILTER_FLAG_PATH_REQUIRED & FILTER_FLAG_QUERY_REQUIRED, 'query' => FILTER_FLAG_QUERY_REQUIRED ); foreach($urls as $url){ foreach($flags as $k => $flag){ echo "$url => $k :\r\n"; var_dump((bool) filter_var($url, FILTER_VALIDATE_URL, $flag)); } echo "\r\n"; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
Fatal error: Uncaught Error: Undefined constant "FILTER_FLAG_SCHEME_REQUIRED" in /in/NmNEI:31 Stack trace: #0 {main} thrown in /in/NmNEI on line 31
Process exited with code 255.
Output for 7.3.12 - 7.3.31, 7.4.0 - 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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/NmNEI on line 46 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)
Output for 5.2.1 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.21, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.32 - 7.3.33
http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => none : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/file1.php?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://www.website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => none : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path : bool(true) http://website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website.com/path1/path2/?query1=true&query2=false => query : bool(true) http://website/path1/path2/?query1=true&query2=false => none : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => host : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path : bool(true) http://website/path1/path2/?query1=true&query2=false => host + path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => path : bool(true) http://website/path1/path2/?query1=true&query2=false => path + query : bool(true) http://website/path1/path2/?query1=true&query2=false => query : bool(true) http://www.website.com/path1/path2/ => none : bool(true) http://www.website.com/path1/path2/ => scheme : bool(true) http://www.website.com/path1/path2/ => scheme + host : bool(true) http://www.website.com/path1/path2/ => scheme + host + path : bool(true) http://www.website.com/path1/path2/ => scheme + host + path + query : bool(true) http://www.website.com/path1/path2/ => host : bool(true) http://www.website.com/path1/path2/ => host + path : bool(true) http://www.website.com/path1/path2/ => host + path + query : bool(true) http://www.website.com/path1/path2/ => path : bool(true) http://www.website.com/path1/path2/ => path + query : bool(true) http://www.website.com/path1/path2/ => query : bool(false) http://website.com/path1/path2/ => none : bool(true) http://website.com/path1/path2/ => scheme : bool(true) http://website.com/path1/path2/ => scheme + host : bool(true) http://website.com/path1/path2/ => scheme + host + path : bool(true) http://website.com/path1/path2/ => scheme + host + path + query : bool(true) http://website.com/path1/path2/ => host : bool(true) http://website.com/path1/path2/ => host + path : bool(true) http://website.com/path1/path2/ => host + path + query : bool(true) http://website.com/path1/path2/ => path : bool(true) http://website.com/path1/path2/ => path + query : bool(true) http://website.com/path1/path2/ => query : bool(false) http://website/path1/path2/ => none : bool(true) http://website/path1/path2/ => scheme : bool(true) http://website/path1/path2/ => scheme + host : bool(true) http://website/path1/path2/ => scheme + host + path : bool(true) http://website/path1/path2/ => scheme + host + path + query : bool(true) http://website/path1/path2/ => host : bool(true) http://website/path1/path2/ => host + path : bool(true) http://website/path1/path2/ => host + path + query : bool(true) http://website/path1/path2/ => path : bool(true) http://website/path1/path2/ => path + query : bool(true) http://website/path1/path2/ => query : bool(false) http://www.website.com?query1=true&query2=false => none : bool(true) http://www.website.com?query1=true&query2=false => scheme : bool(true) http://www.website.com?query1=true&query2=false => scheme + host : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path : bool(true) http://www.website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://www.website.com?query1=true&query2=false => host : bool(true) http://www.website.com?query1=true&query2=false => host + path : bool(true) http://www.website.com?query1=true&query2=false => host + path + query : bool(true) http://www.website.com?query1=true&query2=false => path : bool(false) http://www.website.com?query1=true&query2=false => path + query : bool(true) http://www.website.com?query1=true&query2=false => query : bool(true) http://website.com?query1=true&query2=false => none : bool(true) http://website.com?query1=true&query2=false => scheme : bool(true) http://website.com?query1=true&query2=false => scheme + host : bool(true) http://website.com?query1=true&query2=false => scheme + host + path : bool(true) http://website.com?query1=true&query2=false => scheme + host + path + query : bool(true) http://website.com?query1=true&query2=false => host : bool(true) http://website.com?query1=true&query2=false => host + path : bool(true) http://website.com?query1=true&query2=false => host + path + query : bool(true) http://website.com?query1=true&query2=false => path : bool(false) http://website.com?query1=true&query2=false => path + query : bool(true) http://website.com?query1=true&query2=false => query : bool(true) http://website?query1=true&query2=false => none : bool(true) http://website?query1=true&query2=false => scheme : bool(true) http://website?query1=true&query2=false => scheme + host : bool(true) http://website?query1=true&query2=false => scheme + host + path : bool(true) http://website?query1=true&query2=false => scheme + host + path + query : bool(true) http://website?query1=true&query2=false => host : bool(true) http://website?query1=true&query2=false => host + path : bool(true) http://website?query1=true&query2=false => host + path + query : bool(true) http://website?query1=true&query2=false => path : bool(false) http://website?query1=true&query2=false => path + query : bool(true) http://website?query1=true&query2=false => query : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => none : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path : bool(false) website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(false) website/path1/path2/file1.php?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => none : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path : bool(false) www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) www.website.com/path1/path2/?query1=true&query2=false => query : bool(false) website.com/path1/path2/?query1=true&query2=false => none : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => host : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => path : bool(false) website.com/path1/path2/?query1=true&query2=false => path + query : bool(false) website.com/path1/path2/?query1=true&query2=false => query : bool(false) website/path1/path2/?query1=true&query2=false => none : bool(false) website/path1/path2/?query1=true&query2=false => scheme : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => host : bool(false) website/path1/path2/?query1=true&query2=false => host + path : bool(false) website/path1/path2/?query1=true&query2=false => host + path + query : bool(false) website/path1/path2/?query1=true&query2=false => path : bool(false) website/path1/path2/?query1=true&query2=false => path + query : bool(false) website/path1/path2/?query1=true&query2=false => query : bool(false) www.website.com/path1/path2/ => none : bool(false) www.website.com/path1/path2/ => scheme : bool(false) www.website.com/path1/path2/ => scheme + host : bool(false) www.website.com/path1/path2/ => scheme + host + path : bool(false) www.website.com/path1/path2/ => scheme + host + path + query : bool(false) www.website.com/path1/path2/ => host : bool(false) www.website.com/path1/path2/ => host + path : bool(false) www.website.com/path1/path2/ => host + path + query : bool(false) www.website.com/path1/path2/ => path : bool(false) www.website.com/path1/path2/ => path + query : bool(false) www.website.com/path1/path2/ => query : bool(false) website.com/path1/path2/ => none : bool(false) website.com/path1/path2/ => scheme : bool(false) website.com/path1/path2/ => scheme + host : bool(false) website.com/path1/path2/ => scheme + host + path : bool(false) website.com/path1/path2/ => scheme + host + path + query : bool(false) website.com/path1/path2/ => host : bool(false) website.com/path1/path2/ => host + path : bool(false) website.com/path1/path2/ => host + path + query : bool(false) website.com/path1/path2/ => path : bool(false) website.com/path1/path2/ => path + query : bool(false) website.com/path1/path2/ => query : bool(false) website/path1/path2/ => none : bool(false) website/path1/path2/ => scheme : bool(false) website/path1/path2/ => scheme + host : bool(false) website/path1/path2/ => scheme + host + path : bool(false) website/path1/path2/ => scheme + host + path + query : bool(false) website/path1/path2/ => host : bool(false) website/path1/path2/ => host + path : bool(false) website/path1/path2/ => host + path + query : bool(false) website/path1/path2/ => path : bool(false) website/path1/path2/ => path + query : bool(false) website/path1/path2/ => query : bool(false) www.website.com?query1=true&query2=false => none : bool(false) www.website.com?query1=true&query2=false => scheme : bool(false) www.website.com?query1=true&query2=false => scheme + host : bool(false) www.website.com?query1=true&query2=false => scheme + host + path : bool(false) www.website.com?query1=true&query2=false => scheme + host + path + query : bool(false) www.website.com?query1=true&query2=false => host : bool(false) www.website.com?query1=true&query2=false => host + path : bool(false) www.website.com?query1=true&query2=false => host + path + query : bool(false) www.website.com?query1=true&query2=false => path : bool(false) www.website.com?query1=true&query2=false => path + query : bool(false) www.website.com?query1=true&query2=false => query : bool(false) website.com?query1=true&query2=false => none : bool(false) website.com?query1=true&query2=false => scheme : bool(false) website.com?query1=true&query2=false => scheme + host : bool(false) website.com?query1=true&query2=false => scheme + host + path : bool(false) website.com?query1=true&query2=false => scheme + host + path + query : bool(false) website.com?query1=true&query2=false => host : bool(false) website.com?query1=true&query2=false => host + path : bool(false) website.com?query1=true&query2=false => host + path + query : bool(false) website.com?query1=true&query2=false => path : bool(false) website.com?query1=true&query2=false => path + query : bool(false) website.com?query1=true&query2=false => query : bool(false) website?query1=true&query2=false => none : bool(false) website?query1=true&query2=false => scheme : bool(false) website?query1=true&query2=false => scheme + host : bool(false) website?query1=true&query2=false => scheme + host + path : bool(false) website?query1=true&query2=false => scheme + host + path + query : bool(false) website?query1=true&query2=false => host : bool(false) website?query1=true&query2=false => host + path : bool(false) website?query1=true&query2=false => host + path + query : bool(false) website?query1=true&query2=false => path : bool(false) website?query1=true&query2=false => path + query : bool(false) website?query1=true&query2=false => query : bool(false)
Output for 5.2.0
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(true) 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(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) 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(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) www.website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) website.com/path1/path2/file1.php?query1=true&query2=false => none : bool(true) 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(true) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) website.com/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) 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(true) website.com/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) website.com/path1/path2/file1.php?query1=true&query2=false => path : bool(true) website.com/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) website.com/path1/path2/file1.php?query1=true&query2=false => query : bool(true) website/path1/path2/file1.php?query1=true&query2=false => none : bool(true) website/path1/path2/file1.php?query1=true&query2=false => scheme : bool(false) website/path1/path2/file1.php?query1=true&query2=false => scheme + host : bool(true) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path : bool(true) website/path1/path2/file1.php?query1=true&query2=false => scheme + host + path + query : bool(true) website/path1/path2/file1.php?query1=true&query2=false => host : bool(false) website/path1/path2/file1.php?query1=true&query2=false => host + path : bool(true) website/path1/path2/file1.php?query1=true&query2=false => host + path + query : bool(true) website/path1/path2/file1.php?query1=true&query2=false => path : bool(true) website/path1/path2/file1.php?query1=true&query2=false => path + query : bool(true) website/path1/path2/file1.php?query1=true&query2=false => query : bool(true) www.website.com/path1/path2/?query1=true&query2=false => none : bool(true) www.website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) www.website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) www.website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) www.website.com/path1/path2/?query1=true&query2=false => host : bool(false) www.website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) www.website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) www.website.com/path1/path2/?query1=true&query2=false => path : bool(true) www.website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) www.website.com/path1/path2/?query1=true&query2=false => query : bool(true) website.com/path1/path2/?query1=true&query2=false => none : bool(true) website.com/path1/path2/?query1=true&query2=false => scheme : bool(false) website.com/path1/path2/?query1=true&query2=false => scheme + host : bool(true) website.com/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) website.com/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) website.com/path1/path2/?query1=true&query2=false => host : bool(false) website.com/path1/path2/?query1=true&query2=false => host + path : bool(true) website.com/path1/path2/?query1=true&query2=false => host + path + query : bool(true) website.com/path1/path2/?query1=true&query2=false => path : bool(true) website.com/path1/path2/?query1=true&query2=false => path + query : bool(true) website.com/path1/path2/?query1=true&query2=false => query : bool(true) website/path1/path2/?query1=true&query2=false => none : bool(true) website/path1/path2/?query1=true&query2=false => scheme : bool(false) website/path1/path2/?query1=true&query2=false => scheme + host : bool(true) website/path1/path2/?query1=true&query2=false => scheme + host + path : bool(true) website/path1/path2/?query1=true&query2=false => scheme + host + path + query : bool(true) website/path1/path2/?query1=true&query2=false => host : bool(false) website/path1/path2/?query1=true&query2=false => host + path : bool(true) website/path1/path2/?query1=true&query2=false => host + path + query : bool(true) website/path1/path2/?query1=true&query2=false => path : bool(true) website/path1/path2/?query1=true&query2=false => path + query : bool(true) website/path1/path2/?query1=true&query2=false => query : bool(true) www.website.com/path1/path2/ => none : bool(true) www.website.com/path1/path2/ => scheme : bool(false) www.website.com/path1/path2/ => scheme + host : bool(true) www.website.com/path1/path2/ => scheme + host + path : bool(true) www.website.com/path1/path2/ => scheme + host + path + query : bool(true) www.website.com/path1/path2/ => host : bool(false) www.website.com/path1/path2/ => host + path : bool(true) www.website.com/path1/path2/ => host + path + query : bool(true) www.website.com/path1/path2/ => path : bool(true) www.website.com/path1/path2/ => path + query : bool(true) www.website.com/path1/path2/ => query : bool(false) website.com/path1/path2/ => none : bool(true) website.com/path1/path2/ => scheme : bool(false) website.com/path1/path2/ => scheme + host : bool(true) website.com/path1/path2/ => scheme + host + path : bool(true) website.com/path1/path2/ => scheme + host + path + query : bool(true) website.com/path1/path2/ => host : bool(false) website.com/path1/path2/ => host + path : bool(true) website.com/path1/path2/ => host + path + query : bool(true) website.com/path1/path2/ => path : bool(true) website.com/path1/path2/ => path + query : bool(true) website.com/path1/path2/ => query : bool(false) website/path1/path2/ => none : bool(true) website/path1/path2/ => scheme : bool(false) website/path1/path2/ => scheme + host : bool(true) website/path1/path2/ => scheme + host + path : bool(true) website/path1/path2/ => scheme + host + path + query : bool(true) website/path1/path2/ => host : bool(false) website/path1/path2/ => host + path : bool(true) website/path1/path2/ => host + path + query : bool(true) website/path1/path2/ => path : bool(true) website/path1/path2/ => path + query : bool(true) website/path1/path2/ => query : bool(false) www.website.com?query1=true&query2=false => none : bool(true) www.website.com?query1=true&query2=false => scheme : bool(false) www.website.com?query1=true&query2=false => scheme + host : bool(true) www.website.com?query1=true&query2=false => scheme + host + path : bool(true) www.website.com?query1=true&query2=false => scheme + host + path + query : bool(true) www.website.com?query1=true&query2=false => host : bool(false) www.website.com?query1=true&query2=false => host + path : bool(true) www.website.com?query1=true&query2=false => host + path + query : bool(true) www.website.com?query1=true&query2=false => path : bool(true) www.website.com?query1=true&query2=false => path + query : bool(true) www.website.com?query1=true&query2=false => query : bool(true) website.com?query1=true&query2=false => none : bool(true) website.com?query1=true&query2=false => scheme : bool(false) website.com?query1=true&query2=false => scheme + host : bool(true) website.com?query1=true&query2=false => scheme + host + path : bool(true) website.com?query1=true&query2=false => scheme + host + path + query : bool(true) website.com?query1=true&query2=false => host : bool(false) website.com?query1=true&query2=false => host + path : bool(true) website.com?query1=true&query2=false => host + path + query : bool(true) website.com?query1=true&query2=false => path : bool(true) website.com?query1=true&query2=false => path + query : bool(true) website.com?query1=true&query2=false => query : bool(true) website?query1=true&query2=false => none : bool(true) website?query1=true&query2=false => scheme : bool(false) website?query1=true&query2=false => scheme + host : bool(true) website?query1=true&query2=false => scheme + host + path : bool(true) website?query1=true&query2=false => scheme + host + path + query : bool(true) website?query1=true&query2=false => host : bool(false) website?query1=true&query2=false => host + path : bool(true) website?query1=true&query2=false => host + path + query : bool(true) website?query1=true&query2=false => path : bool(true) website?query1=true&query2=false => path + query : bool(true) website?query1=true&query2=false => query : bool(true)
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 31 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 35 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 38 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 41 http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : Fatal error: Call to undefined function filter_var() in /in/NmNEI on line 46
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 31 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 35 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 38 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 41 http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : Fatal error: Call to undefined function: filter_var() in /in/NmNEI on line 46
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 31 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 35 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 38 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 41 http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : Fatal error: Call to undefined function: filter_var() in /in/NmNEI on line 46
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 31 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 32 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 33 Notice: Use of undefined constant FILTER_FLAG_SCHEME_REQUIRED - assumed 'FILTER_FLAG_SCHEME_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 34 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 35 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 36 Notice: Use of undefined constant FILTER_FLAG_HOST_REQUIRED - assumed 'FILTER_FLAG_HOST_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 37 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 38 Notice: Use of undefined constant FILTER_FLAG_PATH_REQUIRED - assumed 'FILTER_FLAG_PATH_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 39 Notice: Use of undefined constant FILTER_FLAG_QUERY_REQUIRED - assumed 'FILTER_FLAG_QUERY_REQUIRED' in /in/NmNEI on line 41 http://www.website.com/path1/path2/file1.php?query1=true&query2=false => none : Fatal error: Call to undefined function: filter_var() in /in/NmNEI on line 46

preferences:
369.56 ms | 409 KiB | 315 Q