anyLessThanOrEqual.php
Table of Contents
Functions
- anyLessThanOrEqual() : string
- Returns an AQL expression that checks if **any elements** of an array are less than or equal to a given value.
Functions
anyLessThanOrEqual()
Returns an AQL expression that checks if **any elements** of an array are less than or equal to a given value.
anyLessThanOrEqual(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB ANY <= array comparison operator.
Example:
[ 3, 4, 5 ] ANY <= 5returnstrue[ 1, 2, 3 ] ANY <= 2returnsfalse
Parameters
- $leftOperand : mixed
-
The array or expression to evaluate.
- $rightOperand : mixed
-
The value or expression to compare against.
Tags
Return values
string —The AQL predicate string.