PHP function uses variable number of parameters method

不言
Release: 2023-03-29 13:34:01
Original
1321 people have browsed it

This article mainly introduces the method of using a variable number of parameters in PHP functions. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

php in user-defined functions Supports a variable number of parameter lists.

In php5.5 and earlier versions, use thefunc_num_args(), func_get_arg(), func_get_args()function implementation.

Copy after login

Output:

1 a Array ( [0] => a ) 3 1 Array ( [0] => 1 [1] => 2 [2] => 3 ) 2 Array ( [0] => d [1] => e ) Array ( [0] => Array ( [0] => d [1] => e ) [1] => Array ( [0] => f ) )
Copy after login

in php5.6 and above version, you can use... syntax.

Example 1: Use...$args to replace any number of parameters

Copy after login

The output result is the same as php5. 5 Use func_num_args(), func_get_arg(), func_get_args() functions consistently.

Example 2: Convert array to parameter list

Copy after login

Example 3: Some parameters are specified, others The number of parameters is variable

Copy after login

Output:

name:fdipzone tag:programmer args: Array ( ) name:terry tag:designer args: Array ( [0] => 1 [1] => 2 ) name:aoao tag:tester args: Array ( [0] => Array ( [0] => a [1] => b ) [1] => Array ( [0] => c ) [2] => Array ( [0] => d ) )
Copy after login

Related recommendations:

php function mkdir implements the method of recursively creating hierarchical directories

The above is the detailed content of PHP function uses variable number of parameters method. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!