> > > I'd like to go forward with voting on this. Are there any issues that still > need to be resolved? > > Assuming the RFC as-is represents the current state, I'm +1 on all of it.
I'm not a fan of some of the proposed alterations which would translate
arrays (a la call_user_func_array()). To clarify, the following output is
what I'd expect:
function f(...$args) {
echo count($args);
}
f(1,2,3); // 3
f([1,2,3]); // 1
Not "3" in both cases.
-Sara
