Update uri.php

This commit is contained in:
Namhyeon Go 2018-11-11 04:21:52 +09:00 committed by GitHub
parent 60a3cf8286
commit 66ebd2cd56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,6 +198,13 @@ if(!function_exists("get_requested_value")) {
}
}
if(!function_exists("get_requested_condition")) {
function get_requested_condition($name, $method="_ALL") {
$value = get_requested_value($name, $method);
return !(!$value);
}
}
if(!function_exists("get_requested_values")) {
function get_requested_values($names, $method="_ALL", $escape_quotes=true, $escape_tags=false) {
$values = array();