Skip to content

Instantly share code, notes, and snippets.

@defp
Created March 13, 2017 07:02
Show Gist options
  • Save defp/da9e685634987e1d295a1f228618f138 to your computer and use it in GitHub Desktop.
Save defp/da9e685634987e1d295a1f228618f138 to your computer and use it in GitHub Desktop.
<?php
$name = 'John';
$sayHello = function() {
return "Hello $name!";
}
echo $sayHello('John'); // Hello !
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment