php中call_user_func 与 call_user_func_array
Posted wgchen~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php中call_user_func 与 call_user_func_array相关的知识,希望对你有一定的参考价值。
php中call_user_func 与 call_user_func_array
call_user_func_array
call_user_func_array
— 调用回调函数,并把一个数组参数作为回调函数的参数
说明
call_user_func_array(callable $callback, array $param_arr): mixed
把第一个参数作为回调函数(callback)调用,把参数数组作(param_arr)为回调函数的的参数传入。
参数:callback,被调用的回调函数。
param_arr,要被传入回调函数的数组,这个数组得是索引数组
。
返回值:返回回调函数的结果。如果出错的话就返回false
call
以上是关于php中call_user_func 与 call_user_func_array的主要内容,如果未能解决你的问题,请参考以下文章