“PHP min () und max ()” Code-Antworten

PHP min () und max ()

<?php
echo (min(-1341,14415,15115) . "<br>");
echo (max(array(134,14,1441,13)));
#Max outputs 1441, while Min outputs -1341
?>
Rick Astley

min -Funktion in PHP

<?php
echo(min(2,4,6,8,10) . "<br>"); # output: 2
echo(min(22,14,68,18,15) . "<br>"); # output: 14
echo(min(array(4,6,8,10)) . "<br>"); # output: 4
echo(min(array(44,16,81,12))); # output: 12
?>
Bloody Beetle

Ähnliche Antworten wie “PHP min () und max ()”

Fragen ähnlich wie “PHP min () und max ()”

Weitere verwandte Antworten zu “PHP min () und max ()” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen