Last active
November 8, 2016 19:28
-
-
Save gorkamu/5b460caf1c7e957d98ca70de8df1d0d1 to your computer and use it in GitHub Desktop.
Ejemplo de argumentos predeterminados
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 | |
| function saluda($nombre = 'Gorka') { | |
| echo 'Hola '.$nombre.PHP_EOL; | |
| } | |
| saluda(); // Imprime 'Hola Gorka' | |
| saluda('Fino'); // Imprime 'Hola Fino' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment