Skip to content

Instantly share code, notes, and snippets.

@shameerc
Created December 2, 2010 04:04
Show Gist options
  • Save shameerc/724745 to your computer and use it in GitHub Desktop.
Save shameerc/724745 to your computer and use it in GitHub Desktop.
basic example for lambda function
<?php
$sum = function($a,$b){
return $a+$b;
};
echo $sum(2,5);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment