|
Calcule la moyenne
|
Informations rapides |
|
|
Informations détaillées
|
Description :
Calcule la moyenne d'une serie
Portion de code
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
<? function moyenne() { $args = func_get_args(); $total = 0; $somme = 0; foreach ($args as $a) { $somme += somme($a); $total += count($a); } if ($total == 0) { return FALSE; } return ($somme / $total); } ?> |
|
Informations & Services |
 |
|
|
 |
Newsletter
Autre Sources
Tips
|