php中的回调函数

Posted Yxh_blogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php中的回调函数相关的知识,希望对你有一定的参考价值。

php中提供了两个内置的回调函数call_user_func()、call_user_func_array()。

这两个函数的区别是:

call_user_func_array(callable $callback,array $param_arr)是以数组的形式接受回调函数和参数的。

call_user_func($callback, 参数1, 参数2)参数的个数是根据回调函数来决定的。

下面是一些常见的回调函数使用的例子:

//普通函数    
function f1($param1,$param2)    
{    
   echo ‘函数‘.__FUNCTION__.‘被执行,传入的参数是:‘.$param1.‘ ‘.$param2;    
   echo "<br/>";    
}    
   
//通过call_user_func调用函数f1    
call_user_func(‘f1‘,‘han‘,‘wen‘);  

//通过call_user_func_array调用函数    
call_user_func_array(‘f1‘,array(‘han‘,‘wen‘));  
class A{    
   public $name;    

   function show($param)    
   {    
       echo ‘传入参数是:‘.$param."<br/>";    
       echo ‘my name is:‘.$this->name;    
       echo "<br/>";    
   }    
   function show1($param1,$param2)    
   {    
       echo __METHOD__.‘方法被执行,传入参数是:‘.$param1.‘ ‘.$param2."<br/>";    
   }    
   public static function show2($param1,$param2)    
   {    
       echo __METHOD__.‘方法被执行,传入参数是:‘.$param1.‘ ‘.$param2."<br/>";    
   }    

}    
//调用类中非静态成员函数,该成员函数中有$this调用了对象中的成员    
$a = new A;    
$a->name = ‘wen‘;           
call_user_func_array(array($a,‘show‘,),array(‘han!‘));  

//调用类中非静态成员函数,没有对象被创建,该成员函数中不能有$this  
call_user_func_array(array(‘A‘,‘show1‘,),array(‘han!‘,‘wen‘));    

//调用类中静态成员函数  
call_user_func_array(array(‘A‘,‘show2‘),array(‘param1‘,‘param2‘));  

 

以上是关于php中的回调函数的主要内容,如果未能解决你的问题,请参考以下文章

php中的回调函数

PHP 中的回调函数

android片段中的Razorpay回调不起作用

当活动被破坏但我必须继续执行片段中的代码时该怎么办?

21个常用代码片段

ios block和delegate的区别