Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h2>Les fonctions min() et max()</h2> <?php echo(min(0, 150, -8, -200) . "<br>"); echo(max(0, 150, -8, -200)); ?> </body> </html>
Les fonctions min() et max()
-200
150