call_user_func — 把第一个参数作为回调函数调用
程序员文章站
2021-11-28 19:03:17
...
call_user_func — 把第一个参数作为回调函数调用
通过函数的方式回调
php
function barber($type){
echo you wanted a $type haircut, no problemn;
}
call_user_func('barber','mushroom');
上一篇: php常用的一些知识点
下一篇: cookie与session的区别: