作者 竞泽

fix:argv

@@ -11,7 +11,7 @@ if (!function_exists('closure')) { @@ -11,7 +11,7 @@ if (!function_exists('closure')) {
11 return function () use ($class, $method) { 11 return function () use ($class, $method) {
12 $handler = new $class; 12 $handler = new $class;
13 13
14 - return call_user_func_array([$handler, $method], ...func_get_args()); 14 + return call_user_func_array([$handler, $method], func_get_args());
15 }; 15 };
16 } 16 }
17 17