Blogger Information
Blog 18
fans 0
comment 0
visits 24370
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
回调函数
耀的博客
Original
903 people have browsed it

<?php

function woziji($one,$two,$func){

       //我规定:检查$func是否是函数,如果不是函数停止执行本段代码,返回false

       if(!is_callable($func)){

               return false;

       }

       //我把$one、$two相加,再把$one和$two传入$func这个函数中处理一次

       //$func是一个变量函数,参见变量函数这一章

       echo $one + $two + $func($one,$two);

}

//我们定义几个函数试试

function plusx2( $foo , $bar){

       $result = ($foo+$bar)*2;

       return $result;

}


function jian( $x , $y ){

   $result = $x - $y;

   return $result;

}


//调用一下函数,woziji,向里面传入参数试试

echo woziji(20,10,'plusx2');

echo "<br>";

//将plusx2改成jian试试结果

echo woziji(20,10,'jian');

/*

处理过程:

1、将20赋值给形参$one,10赋值给$two,而plusx2或者jian这两个变量函数,赋值给了$func

2、在woziji这个函数中判断plusx2或者jian是否为函数,不是函数就return false停止执行了

3、显示plusx2或者jian是函数。因此$one=20,$two=10相加了,相加后,$one和$two又带到了$func($one,$two)中。

4、带入至里面后而$func,是可变的,可以为plusx2或者jian。如果为plusx2的话,$one=20,$two=10的这两个结果又给了plusx2函数里面的$foo和$bar

5、$foo+$bar乘以2以后将结果返回至woziji这个函数功能体的运算处:$one+$two+$func($one,$two);

6、这样就得到了运算结果

回调函数:在一个调数里面,再传入一个函数名,将函数名加上()括号/是为变量函数,配合执行

 */


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