Coming from C++ background ;) How can I overload PHP functions?
One function definition if there are any arguments, and another if there are no arguments? Is it
What about this:
function($arg = NULL) { if ($arg != NULL) { etc. etc. } }