Skip to content

Instantly share code, notes, and snippets.

@legendar
Created November 12, 2009 10:16
Show Gist options
  • Save legendar/232783 to your computer and use it in GitHub Desktop.
Save legendar/232783 to your computer and use it in GitHub Desktop.
<?
function test($func) {
$func('Hello world!');
}
test(function($message){
echo $message;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment