The real power of PHP comes from its functions, but some PHP functions are not fully utilized, and not everyone will read the manual and function reference page from beginning to end. Here we will introduce it to you These useful functions and functions.
1. Function with any number of parameters
As you may already know, PHP allows defining functions with optional parameters. But there are also methods that completely allow any number of function parameters. The following are examples of optional parameters:
- The following is the quoted content:
-
- //functionwith2optionalarguments
-
functionfoo($arg1=”,$arg2=”){
-
- echo "arg1:$arg1
”;
- echo "arg2:$arg2
”;
-
- }
-
- foo(‘hello’,world’);
- /*prints:
- arg1:hello
- arg2:world
- */
-
- foo();
- /*prints:
- arg1:
- arg2:
- */
Now let’s see how to create a function that accepts any number of arguments. This time you need to use the func_get_args() function:
- The following is the quoted content:
-
- //yes,theargumentlistcanbeempty
- functionfoo(){
-
- //returnsanarrayofallpassedarguments
-
$args=func_get_args();
-
-
foreach($argsas$k=>$v){
- echo “arg”.($k+1).”:$v
”;
- }
-
- }
-
- foo();
- /*printsnothing*/
-
- foo(‘hello’);
- /*prints
- arg1:hello
- */
-
- foo(‘hello’, ‘world’, ‘again’);
- /*prints
- arg1:hello
- arg2:world
- arg3:again
- */
http://www.bkjia.com/PHPjc/486310.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486310.htmlTechArticleThe real power of PHP comes from its functions, but some PHP functions are not fully utilized and are not fully utilized. Not everyone will read the manual and function reference from cover to cover, here...
Statement: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