9 lines
277 B
Plaintext
Raw Normal View History

2017-07-06 19:58:02 +02:00
{
"name": "array_first",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Arrays"],
2017-07-06 19:58:02 +02:00
"description": "Returns the first value of an array.",
"arguments": [ {"arg":"array","description":"an array"} ],
"examples": [ { "expression":"array_first(array('a','b','c'))", "returns":"'a'"}]
}