Source: Darren's Outpost ( from this entry , this fragment itself )

  1. <?
  2. // function declaration
  3. function foo($bar = 'default value here') { ... };
  4. // function calling
  5. foo(); // valid call
  6. foo(&$var); // this, however is consider deprecated in PHP >= 5
  7. ?>