Blogger Information
Blog 14
fans 0
comment 0
visits 8795
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
回调函数,递归函数
于星辉
Original
513 people have browsed it

一、回调函数
回调函数只是变量函数的一种变量,本质上还是变量函数的应用。
过程:在一个函数(A函数)中,通过变量函数的方式 $var()调用另外一个函数(B函数、C函数),而其函数的名称通过A函数的参数传递进来,这种方式就是回调函数 。因为函数A中变量函数$var()会根据用户传入不同的实参回过头调用不同很名称的其他函数。

  1. <?php
  2. /*回调函数 */
  3. //定义函数
  4. function a ($func)
  5. {
  6. //变量函数出现
  7. $func();
  8. }
  9. //定义一些将被回调的函数
  10. function writeA(){
  11. echo 'aaaaaa';
  12. }
  13. function writeA(){
  14. echo 'aaaaaa';
  15. }
  16. function writeA(){
  17. echo 'aaaaaa';
  18. }
  19. // 回调函数的出现
  20. a('writeA');
  21. ?>

二、 递归函数

  1. <?php
  2. function num($num){
  3. echo $num;
  4. if ($num >0){
  5. num($num - 1);
  6. }else{
  7. echo '<hr>';
  8. }
  9. echo $num;
  10. }
  11. num(2);
  12. ?>
Correcting teacher:天蓬老师天蓬老师

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