Oihana PHP Arango

Comparator uses ConstantsTrait

Table of Contents

Constants

EQUAL  : string = '=='
The EQUAL operator '=='.
GREATER_THAN  : string = '>'
The GREATER_THAN operator '>'.
GREATER_THAN_OR_EQUAL  : string = '>='
The GREATER_THAN_OR_EQUAL operator '>='.
IN  : string = 'IN'
The IN operator 'IN', test if a value is contained in an array.
LESS_THAN  : string = '<'
The LESS_THAN operator '<'.
LESS_THAN_OR_EQUAL  : string = '<='
The LESS_THAN_OR_EQUAL operator '<='.
LIKE  : string = 'LIKE'
The LIKE operator 'LIKE', tests if a string value matches a pattern.
MATCH  : string = '=~'
The MATCH comparator '=~', tests if a string value matches a regular expression.
NOT_EQUAL  : string = '!='
The NOT_EQUAL operator '!='.
NOT_IN  : string = 'NOT IN'
The NOT_IN operator 'NOT IN', test if a value is not contained in an array.
NOT_LIKE  : string = 'NOT LIKE'
The NOT_LIKE operator 'NOT LIKE', tests if a string value does not match a pattern.
NOT_MATCH  : string = '!~'
The NOT_MATCH comparator '!~', tests if a string value dos not match a regular expression.

Constants

EQUAL

The EQUAL operator '=='.

public string EQUAL = '=='

GREATER_THAN

The GREATER_THAN operator '>'.

public string GREATER_THAN = '>'

GREATER_THAN_OR_EQUAL

The GREATER_THAN_OR_EQUAL operator '>='.

public string GREATER_THAN_OR_EQUAL = '>='

IN

The IN operator 'IN', test if a value is contained in an array.

public string IN = 'IN'

LESS_THAN

The LESS_THAN operator '<'.

public string LESS_THAN = '<'

LESS_THAN_OR_EQUAL

The LESS_THAN_OR_EQUAL operator '<='.

public string LESS_THAN_OR_EQUAL = '<='

LIKE

The LIKE operator 'LIKE', tests if a string value matches a pattern.

public string LIKE = 'LIKE'

MATCH

The MATCH comparator '=~', tests if a string value matches a regular expression.

public string MATCH = '=~'

NOT_EQUAL

The NOT_EQUAL operator '!='.

public string NOT_EQUAL = '!='

NOT_IN

The NOT_IN operator 'NOT IN', test if a value is not contained in an array.

public string NOT_IN = 'NOT IN'

NOT_LIKE

The NOT_LIKE operator 'NOT LIKE', tests if a string value does not match a pattern.

public string NOT_LIKE = 'NOT LIKE'

NOT_MATCH

The NOT_MATCH comparator '!~', tests if a string value dos not match a regular expression.

public string NOT_MATCH = '!~'
On this page

Search results