本文整理匯總了PHP中ArrayUtils::all方法的典型用法代碼示例。如果您正苦於以下問題:PHP ArrayUtils::all方法的具體用法?PHP ArrayUtils::all怎麽用?PHP ArrayUtils::all使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ArrayUtils
的用法示例。
在下文中一共展示了ArrayUtils::all方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: entityMatchesSomeRule
/**
* Tests if entity satisfies at least one of given rules.
*
* @param $entity
* @param $rules
* @return bool
*/
public static function entityMatchesSomeRule($entity, $rules)
{
return ArrayUtils::any($rules, function ($rule) use($entity) {
// check all parts of rule
return ArrayUtils::all($rule, function ($values, $field) use($entity) {
if (!isset($entity[$field])) {
return false;
}
$value = $values[0];
// Use single value per field
$valueTokens = QueryLanguageUtils::tokenizeValue($value);
$isWildcard = QueryLanguageUtils::tokensContainWildcard($valueTokens);
if ($isWildcard && preg_match(QueryLanguageUtils::tokensToRegex($valueTokens), $entity[$field])) {
return true;
} elseif (strval($entity[$field]) === $value) {
return true;
}
return false;
});
});
}