all_user_func()详解
Posted laijinquan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了all_user_func()详解相关的知识,希望对你有一定的参考价值。
来源:https://blog.csdn.net/moliyiran/article/details/83514495
call_user_func — 把第一个参数作为回调函数调用
通过函数的方式回调
<?php function barber($type){ echo "you wanted a $type haircut, no problem "; } call_user_func(‘barber‘,‘mushroom‘); ?>
返回内容如下:
you wanted a mushroom haircut, no problem
通过类名、对象的方式回调
以上是关于all_user_func()详解的主要内容,如果未能解决你的问题,请参考以下文章
14.VisualVM使用详解15.VisualVM堆查看器使用的内存不足19.class文件--文件结构--魔数20.文件结构--常量池21.文件结构访问标志(2个字节)22.类加载机制概(代码片段