Skip to content

Instantly share code, notes, and snippets.

@raphaeldealmeida
Created February 15, 2012 21:39
Show Gist options
  • Save raphaeldealmeida/1839171 to your computer and use it in GitHub Desktop.
Save raphaeldealmeida/1839171 to your computer and use it in GitHub Desktop.
Funções Anonimas
<?php
function(){
echo 'Olá';
}
$saudacao = function(){
echo 'Olá';
};
//output: Olá
$saudacao();
$saudacaoPessoal = function($nome){
echo 'Olá ', $nome, '!';
};
//output: Olá Raphael!
$saudacaoPessoal('Raphael');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment