本文整理匯總了PHP中Guardian::checker方法的典型用法代碼示例。如果您正苦於以下問題:PHP Guardian::checker方法的具體用法?PHP Guardian::checker怎麽用?PHP Guardian::checker使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Guardian
的用法示例。
在下文中一共展示了Guardian::checker方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: function
Guardian::checker('this_is_url', function ($input) {
return filter_var($input, FILTER_VALIDATE_URL);
});
// Check for email address
Guardian::checker('this_is_email', function ($input) {
return filter_var($input, FILTER_VALIDATE_EMAIL);
});
// Check for boolean value
Guardian::checker('this_is_boolean', function ($input) {
return filter_var($input, FILTER_VALIDATE_BOOLEAN);
});
// Check whether the input value is too large
Guardian::checker('this_is_too_large', function ($input, $max = 3000) {
return is_numeric($input) ? $input > $max : false;
});
// Check whether the input value is too small
Guardian::checker('this_is_too_small', function ($input, $min = 0) {
return is_numeric($input) ? $input < $min : false;
});
// Check whether the input value is too long
Guardian::checker('this_is_too_long', function ($input, $max = 3000) {
return is_string($input) ? strlen($input) > $max : false;
});
// Check whether the input value is too short
Guardian::checker('this_is_too_short', function ($input, $min = 0) {
return is_string($input) ? strlen($input) < $min : false;
});
// Check whether the answer is incorrect
Guardian::checker('this_is_correct', function ($a = true, $b = false) {
return $a === $b;
});