<?// function declarationfunction foo($bar = 'default value here') { ... };// function callingfoo(); // valid callfoo(&$var); // this, however is consider deprecated in PHP >= 5?>