Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created November 8, 2016 19:19
Show Gist options
  • Select an option

  • Save gorkamu/ab2daeca875374646377f0283e52852c to your computer and use it in GitHub Desktop.

Select an option

Save gorkamu/ab2daeca875374646377f0283e52852c to your computer and use it in GitHub Desktop.
Ejemplo de paso de argumentos por referencia
<?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