Pregunta: Crear funciones con muchos parametros...
Respuesta: ...
Por ejemplo, yo tengo esta función...
Código PHP:
echo sumar(1, 5, 7, 8, 10, 545); // devolver la suma de todos...
¿Cómo puedo hacer esto?
Muy simple...
Código PHP:
function sumar()
{
$numeros = func_get_args();
$total = 0;
foreach ($numeros as $key)
{
$total += $key;
}
return $total;
}
La función func_get_args devuelve un array con todos los parametros que se le pasaron a la función...
¿Cómo uso esa función?
Código PHP:
echo sumar(1, 5, 6); // imprime 12...
Atte... DarkXNightmare