func.php
Table of Contents
Functions
- func() : string
- Generates a function expression like `NAME(arg1,arg2)`.
Functions
func()
Generates a function expression like `NAME(arg1,arg2)`.
func(string $name[, mixed $arguments = null ][, string $separator = ',' ]) : string
Parameters
- $name : string
-
The function name.
- $arguments : mixed = null
-
The arguments for the function.
- $separator : string = ','
-
The separator between arguments (default: Char::COMMA).
Tags
Return values
string —The function expression.