Oihana PHP Arango

allEqual.php

Table of Contents

Functions

allEqual()  : string
Returns an AQL expression that checks if **all elements** of an array satisfy a comparison.

Functions

allEqual()

Returns an AQL expression that checks if **all elements** of an array satisfy a comparison.

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

Equivalent to the ArangoDB ALL == array comparison operator.

Example:

  • [ 1, 2, 3 ] ALL == 2 returns false
  • [ 2, 2, 2 ] ALL == 2 returns true
Parameters
$leftOperand : mixed

The array or expression to evaluate.

$rightOperand : mixed

The value or expression to compare against.

Tags
example
echo allEqual('[ 1, 2, 3 ]', 2);
// [ 1, 2, 3 ] ALL == 2

echo allEqual('scores', 10);
// scores ALL == 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