function test($date, $value) { echo "$date $value";}$date = "9月18号";$value = "100";$y = "2";test($date, $value, false);
对于你的设计,多的没有用!
对于你的设计,多的没有用!
好像并没有什么卵用
好像并没有什么卵用
给一个实参多于形参的设计
function mul($a) { $b = func_num_args() > 1 ? func_get_arg(1) : $a; return $a * $b; }echo mul(2); //4echo mul(2, 3); //6