call_user_func()详解

先来看解释 :

(PHP 4, PHP 5, PHP 7)

call_user_func — 把第一个参数作为回调函数调用

通过函数的方式回调


返回内容如下:

you wanted a mushroom haircut, no problem


通过类名、对象的方式回调



通过$this关键字进行对类的回调,以下源码出自thinkphp5 controller.php   200行

call_user_func([$this, $method]);


你可能感兴趣的:(call_user_func()详解)