upper.php
Table of Contents
Functions
- upper() : string
- Convert lowercase letters to uppercase.
Functions
upper()
Convert lowercase letters to uppercase.
upper(string $value) : string
This helper wraps the ArangoDB AQL function UPPER(value) which converts
all lowercase letters in a string to their uppercase counterparts while
leaving all other characters unchanged.
Example AQL usage:
UPPER("hello world") // returns "HELLO WORLD"
UPPER("123 abc") // returns "123 ABC"
UPPER(doc.title) // converts title to uppercase
Parameters
- $value : string
-
String expression to convert to uppercase.
Tags
Return values
string —The formatted AQL expression.