I have a question regarding PHP. Is there any way I could make a function, which has a dynamic number of function inputs?
For example, let's call that function dynamic_func()
It should work in both of these cases, and also in other cases, not depending on number of functions input:
dynamic_func(1,2,3,4)
dynamic_func(1,2,3,4,5,6)
Thanks in advance!