可能重复:
How to pass variable number of arguments to a PHP function
我在php中创建了我的框架 我想要变量函数参数 前
如果我有2个参数
$a,$b;
功能变为
function name($a,$b);
如果我有3个参数
$a,$b,$c;
功能变为
function name($a,$b,$c);
答案 0 :(得分:0)
结帐http://www.php.net/manual/en/functions.arguments.php#functions.variable-arg-list。这就是你要找的东西吗?如果没有,你能接受一个阵列吗?