Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save gorkamu/2686a295c7209d525843af22e1740bfa to your computer and use it in GitHub Desktop.
Ejemplo de lista de longitud variable en argumentos
<?php
function sum(...$nombres) {
$saludo = 'Hola ';
foreach ($nombres as $nombre) {
$saludo .= $nombre;
}
return $saludo;
}
echo sum('Gorkamu', 'Ainhoa', 'Rubén'); // Imprime 'Hola Gorkamu Ainhoa Rubén'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment