Hi
I've noticed that often in php functions there are obligatory arguments so that the function can work and also one or several optional arguments
i was wondering if it's possible to write a custom function that has, say, 2 obligatory args and then if you send more than 2 arg the function does extra tasks
if it is possible i have 2 questions :
what would the syntax for the args be ?
what code would i need to use for detecting if more than 2 args have been sent ?
thanks for your help