pops the first element from an array and shift the rest of the values to the left. In case the array is empty an exception is thrown,
unless the second argument "defaultValue" is provided, in that case that value is returned.
Lucee Function Reference
arrayshift()
Eingeführt in version: 5.3.8.104
Beispiel
arrayshift(array array,[any defaultValue]):any
Kategorie
array
Argumente
Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name | Typ | Required | Beschreibung |
---|---|---|---|
array | array | Yes | array to shift |
defaultValue | any | No | this value is returned in case the array is empty |