Blogger Information
Blog 6
fans 0
comment 0
visits 2918
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础课第三次作业
阿远
Original
427 people have browsed it

0804作业

一、总结函数的返回值以及参数

1、函数返回值就是所调用的函数返回给你的值。一般采用return来返回,return只能返回单个值。如果想返回多个值,返回一个数组,对象。
2、参数为函数的调用者,函数里面的参数,调用的时候叫实参,参数有几个,调用的时候实参就需要有几个参数。
3、参数列表是从左往右传值。
4、不传参数或者少传参数,都会使用默认的参数值,如果用户传了参数,会发生覆盖。

二、实例演绎你对课上匿名函数以及变量作用域问题的理解?

  1. <?php
  2. $name1 = '国泰';
  3. $name = '祖国';
  4. $form = function() use ( $name, $name1 ) {
  5. return sprintf( '%s万岁%s民安', $name, $nam1 );
  6. };
  7. echo $form();
  8. ?>
  1. <?php
  2. $name = function ( $a, $b ) {
  3. return "{$a}万事{$b}" ;
  4. };
  5. echo $name( '家和', '兴' );
  6. ?>
  7. `
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