Created
December 4, 2016 17:03
-
-
Save gorkamu/ba7dda22ffcd8d4703561f97744db9ca to your computer and use it in GitHub Desktop.
Ejemplo de función anónima asignada a una variable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$saludo = function($nombre) | |
{ | |
printf("Hola %s\r\n", $nombre); | |
}; | |
$saludo('Gorkamu'); // Hola Gorkamu | |
$saludo('yonkis del metal'); // Hola yonkis del metal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment