On Tue, 2 Apr 2002, Erik Price wrote: > On Tuesday, April 2, 2002, at 01:24 PM, Jason Wong wrote: >>> (b) Pass a variable as an argument to a function but make that argument >>> optional so that it does not have to exist to make the function >>> legitimate. >> >> function function2 ($variable_A="") { >> } > > Thanks for the pointer. I didn't realize that passing a blank argument > would achieve this effect.
Here's another way to have optional arguments, just so you're at a wealth of solutions: function function2() { list ($variable_A) = func_get_args(); } miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php