Oihana PHP Arango

anyLessThan.php

Table of Contents

Functions

anyLessThan()  : string
Returns an AQL expression that checks if **any elements** of an array are less than a given value.

Functions

anyLessThan()

Returns an AQL expression that checks if **any elements** of an array are less than a given value.

anyLessThan(mixed $leftOperand, mixed $rightOperand) : string

Equivalent to the ArangoDB ANY < array comparison operator.

Example:

  • [ 3, 4, 5 ] ANY < 6 returns true
  • [ 1, 2, 3 ] ANY < 2 returns false
Parameters
$leftOperand : mixed

The array or expression to evaluate.

$rightOperand : mixed

The value or expression to compare against.

Tags
example
echo anyLessThan('[ 1, 2, 3 ]', 2);
// [ 1, 2, 3 ] ANY < 2

echo anyLessThan('scores', 10);
// scores ANY < 10
see
https://docs.arangodb.com/stable/aql/operators/#array-comparison-operators
since
1.0.0
author

Marc Alcaraz

Return values
string

The AQL predicate string.

On this page

Search results