How can i skip first argument without giving any value in function call,so that first argument can take default value NULL?
function test($a = NULL, $b = tru
You can change the position of the arguments, or you can pass the arguments as an array, for exmaple:
test($options);