



|
Manuel PHP
|
|
Table : .abs.acos .acosh .asin .asinh .atan2 .atan .atanh .base convert .bindec .ceil .cos .cosh .decbin .dechex .decoct .deg2rad .exp .expm1 .floor .fmod .getrandmax .hexdec .hypot .is finite .is infinite .is nan .lcg value .log10 .log1p .log .max .min .mt getrandmax .mt rand .mt srand .octdec .pi .pow .rad2deg .rand .round .sin .sinh .sqrt .srand .tan .tanh |
maxmaxDescriptionmixed max ( number arg1, number arg2 [, number ...] )mixed max ( array numbers ) max() retourne la plus grande valeur numérique parmi les valeurs passées en paramètre. Si le premier paramètre est un tableau, max() retourne la plus grande valeur de ce tableau. Si le premier paramètre est un entier, une chaîne ou un nombre à virgule flottante (float), max() requiert au moins deux paramètres, et retournera alors le plus grand d'entre eux. Le nombre d'arguments est alors illimité.
|

