Created
November 8, 2016 19:19
-
-
Save gorkamu/ab2daeca875374646377f0283e52852c to your computer and use it in GitHub Desktop.
Ejemplo de paso de argumentos por referencia
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 | |
| $nombre = 'Gorkamu'; | |
| function saluda(&$nombre) { | |
| $nombre = 'Fino'; | |
| return $nombre; | |
| } | |
| echo $nombre; // Imprime 'Gorkamu' | |
| echo saluda($nombre); // Imprime 'Fino' | |
| echo $nombre; // Imprime 'Fino' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment