Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Last active November 8, 2016 19:28
Show Gist options
  • Select an option

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

Select an option

Save gorkamu/5b460caf1c7e957d98ca70de8df1d0d1 to your computer and use it in GitHub Desktop.
Ejemplo de argumentos predeterminados
<?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