例如
function get_xxx(){
return func_get_args();
}
function the_xxx(){
// 这一步应该怎么做,才能吧参数原样传递给 get_xxx 函数
print_r(get_xxx());
}
the_xxx(1,2,3,4,5)
1
dic 2018-03-20 19:26:48 +08:00 via Android 1
call_user_func_array
|