Skip to content

Instantly share code, notes, and snippets.

@torus
Created May 17, 2012 06:12
Show Gist options
  • Select an option

  • Save torus/2716896 to your computer and use it in GitHub Desktop.

Select an option

Save torus/2716896 to your computer and use it in GitHub Desktop.
class FuncClass {
public static function gen_meth () {
return function ($n) {
echo "\nclass method generated ", $n, "\n";
};
}
public static function meth ($n) {
echo "\nbare class method ", $n, "\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment