Blogger Information
Blog 4
fans 0
comment 0
visits 1617
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php编程0804作业
沙漠狂奔的鱼
Original
363 people have browsed it

函数的返回值

单值

字符串 整数 布尔值

多值

数组 对象 json字符串

函数的参数

1.没有参数,函数执行的任务是固定的。、
2.有参数,则为函数的调用者提供一个接口去改变函数体的执行行文。
3.参数列表是从左往右传值的。
4.不传参数或少传参数,都会使用默认的参数值,如果用户传了参数,会发生覆盖。
5.剩余参数适用于参数的个数不确定;剩余参数用在参数列表收集的作用;剩余参数用在函数的调用表达式中展开。

  1. $itemName='惠普电脑';
  2. $itemPrice='5580';
  3. $closure1 = function() use ($itemName,$itemPrice)
  4. {
  5. return sprintf('今日主推产品是%s, 商品价格是%d',$itemName,$itemPrice);
  6. };
  7. echo $closure1();
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post