1. 参数规范 在函数/方法里,未设置默认值的参数应放在设置默认值的参数前,如:123function test($age = 21, $id, $options = []){ print_r(func_get_args()); }
2022-04-28