例如
function get_xxx(){ return func_get_args(); } function the_xxx(){ // 这一步应该怎么做,才能吧参数原样传递给 get_xxx 函数 print_r(get_xxx()); } the_xxx(1,2,3,4,5)