I have my own function called 'Parse
' which is in an object 'Core
', the function takes 5 parameters so far, each of which have default values [true,false].
Say if I wanted to change the 3rd parameter, but keep the rest the same, do I have to assign values to the rest or can I skip like so:
$Core->Parse(,,false,,);
Not sure if that makes sense to you or not. I just wanted to ask the question before I go ahead and do it. Or if that isn't possible, what other ways are there other than filling in the other parameter values, or are there none?
Any feedback would be great.
Thanks.