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.
我想创建一个可变参数函数,它将在表中插入一个新行。该函数将包含表名,属性,它的值。由于表中没有属性是可变的,因此应该提供可变数量的参数。你能提出一个想法吗?
func_get_args可能是您正在寻找的。
func_get_args
http://php.net/manual/en/function.func-get-args.php
func_num_args结合func_get_args将返回提供给函数的参数数量及其值。尽管听起来,您应该使用数组来接受您的属性和值。
func_num_args