Function argumentsInformation 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. PHP supports passing arguments by value (the default), passing by reference, and default argument values. Variable-length argument lists are also supported, see also the function references for func_num_args, func_get_arg, and func_get_args for more information.
Example #1 Passing arrays to functions
<?php Making arguments be passed 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 argument name in the function definition:
Example #2 Passing function parameters by reference
<?php Default argument valuesA function may define C++-style default values for scalar arguments as follows:
Example #3 Use of default parameters in functions
<?php The above example will output: Making a cup of cappuccino. Making a cup of . Making a cup of espresso.
PHP also allows the use of arrays and the special type
Example #4 Using non-scalar types as default values
<?php The default value must be a constant expression, not (for example) a variable, a class member or a function call. Note that when using default arguments, any defaults should be on the right side of any non-default arguments; otherwise, things will not work as expected. Consider the following code snippet:
Example #5 Incorrect usage of default function arguments
<?php The above example will output: Warning: Missing argument 2 in call to makeyogurt() in /usr/local/etc/httpd/htdocs/phptest/functest.html on line 41 Making a bowl of raspberry . Now, compare the above with this:
Example #6 Correct usage of default function arguments
<?php The above example will output: Making a bowl of acidophilus raspberry.
Variable-length argument listsPHP has support for variable-length argument lists in user-defined functions. This is really quite easy, using the func_num_args, func_get_arg, and func_get_args functions. No special syntax is required, and argument lists may still be explicitly provided with function definitions and will behave as normal. |