Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP的func_get_args()文档提到:
func_get_args()
此函数现在可以在参数列表中使用。
谁能解释这意味着什么以及如何应用它?
在 5.3 之前不可能做到这一点:
function foo($a,$b) { var_dump(func_get_args()); }
为了检索函数的参数(即出于调试目的),您必须func_get_args先将返回值分配给变量,然后才能使用实际值:
func_get_args
function foo($a,$b) { $args = func_get_args(); var_dump($args); }
func_get_args从 PHP 5.3 开始可以使用(不带临时变量)的立即返回值。