Function parameters and argumentsThe function parameters are declared in the function signature. Information may be passed to functions via the argument list, which is a comma-delimited list of expressions. The arguments are evaluated from left to right and the result is assigned to the parameters of the function, before the function is actually called (eager evaluation). PHP supports passing arguments by value (the default), passing by reference, and default argument values. Variable-length argument lists and Named Arguments are also supported.
Example #1 Passing arrays to functions
As of PHP 8.0.0, the list of function parameters may include a trailing comma, which will be ignored. That is particularly useful in cases where the list of parameters is long or contains long variable names, making it convenient to list parameters vertically. Example #2 Function parameter list with trailing comma
Passing arguments by referenceBy default, function arguments are passed by value (so that if the value of the argument within the function is changed, it does not get changed outside of the function). To allow a function to modify its arguments, they must be passed by reference. To have an argument to a function always passed by reference, prepend an ampersand (&) to the parameter name in the function definition:
Example #3 Passing function arguments by reference
It is an error to pass a constant expression as argument to parameter that expects to be passed by reference. Default parameter values
A function may define default values for parameters using syntax similar
to assigning a variable. The default is used only when the parameter's argument is
not passed. Note that passing
Example #4 Use of default parameters in functions
The above example will output: Making a cup of cappuccino. Making a cup of . Making a cup of espresso.
Default parameter values may be scalar values, arrays,
the special type
Example #5 Using non-scalar types as default values
The above example will output: Making a cup of cappuccino with hands. Making a cup of cappuccino, lavazza with teapot.
Example #6 Using objects as default values (as of PHP 8.1.0)
The above example will output: Making coffee. Crafting a beautiful coffee just for you. The default value must be a constant expression, not (for example) a variable, a class member or a function call. Note that any optional parameters should be specified after any required parameters, otherwise they cannot be omitted from calls. Consider the following example:
Example #7 Incorrect usage of default function parameters
The above example will output: Fatal error: Uncaught ArgumentCountError: Too few arguments to function makeyogurt(), 1 passed in example.php on line 42 Now, compare the above with this:
Example #8 Correct usage of default function parameters
The above example will output: Making a bowl of raspberry yogurt. As of PHP 8.0.0, named arguments can be used to skip over multiple optional parameters.
Example #9 Correct usage of default function parameters
The above example will output: Making a bowl of raspberry natural yogurt.
As of PHP 8.0.0, declaring mandatory parameters after optional parameters
is deprecated. This can generally be resolved by
dropping the default value, since it will never be used.
One exception to this rule are parameters of the form
Example #10 Declaring optional parameters after mandatory parameters
Variable-length argument lists
PHP has support for variable-length argument lists in
user-defined functions by using the
Parameter lists may include the
Example #11 Using
The above example will output: 10
Example #12 Using
The above example will output: 3 3
You may specify normal positional parameters before the
It is also possible to add a
type declaration before the
Example #13 Type declared variable arguments
The above example will output: 3 days Catchable fatal error: Argument 2 passed to total_intervals() must be an instance of DateInterval, null given, called in - on line 14 and defined in - on line 2
Finally, variable arguments can also be passed
by reference by
prefixing the Named ArgumentsPHP 8.0.0 introduced named arguments as an extension of the existing positional parameters. Named arguments allow passing arguments to a function based on the parameter name, rather than the parameter position. This makes the meaning of the argument self-documenting, makes the arguments order-independent and allows skipping default values arbitrarily. Named arguments are passed by prefixing the value with the parameter name followed by a colon. Using reserved keywords as parameter names is allowed. The parameter name must be an identifier, specifying dynamically is not allowed. Example #14 Named argument syntax
Example #15 Positional arguments versus named arguments
The order in which the named arguments are passed does not matter. Example #16 Same example as above with a different order of parameters
Named arguments can be combined with positional arguments. In this case, the named arguments must come after the positional arguments. It is also possible to specify only some of the optional arguments of a function, regardless of their order. Example #17 Combining named arguments with positional arguments
Passing an argument to the same named parameter multiple times results in an Error exception. Example #18 Error thrown when passing an argument to the same named parameter multiple times
As of PHP 8.1.0, it is possible to use named arguments after unpacking the arguments. A named argument must not override an already unpacked argument. Example #19 Use named arguments after unpacking
|