Created
November 8, 2016 19:31
-
-
Save gorkamu/2686a295c7209d525843af22e1740bfa to your computer and use it in GitHub Desktop.
Ejemplo de lista de longitud variable en argumentos
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 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