func_get_args()
returns an array with all arguments of the current function.
PHP5.6 - splat operator
Arrays and Traversable objects can be unpacked into argument lists when calling functions by using the ... operator. This is also known as the splat operator in other languages.