The point is, that you can declare a function like this:
[code]
function foo(int …$params){
//code
}
[/code]
and then call it like this:
[code]
foo(3, 7, 4, 8, 0);
[/code]