notLike.php
Table of Contents
Functions
- notLike() : string
- Returns an AQL expression that checks if the left string does not match the right LIKE pattern.
Functions
notLike()
Returns an AQL expression that checks if the left string does not match the right LIKE pattern.
notLike(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB NOT LIKE comparison operator.
Example:
"foo" NOT LIKE "f%"returnsfalse"bar" NOT LIKE "f%"returnstrue
Parameters
- $leftOperand : mixed
-
The string value or expression to test.
- $rightOperand : mixed
-
The LIKE pattern expression.
Tags
Return values
string —The AQL predicate string.