ACL Functions Defined
Functions are different than commands because they return a value that can be assigned to a variable. A function takes arguments that are specified in parentheses directly following the function name. Here is the syntax for a function:
$value = functionname(
argument1, argument2, . . .)
Assigning the value to a variable is not mandatory.