Y volviendo con los argumentos, tambien podrias usar la funcion func_get_args() -> http://php.net/manual/en/function.func-get-args.php
Genera un array con el numero de argumentos que haigas ingresado.
Código PHP:
Ver originalfunction datos(){
foreach($argumentos as $argumento){
echo $argumento."<br>";
}
}
datos("Argumento 1","Argumento 2","Argumento 3")
Código:
Array ( [0] => Argumento 1 [1] => Argumento 2 [2] => Argumento 3 )