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> <?php $number = 123; $txt = sprintf("Avec 2 décimales : %1\$.2f <br>With no decimals: %1\$u",$number); echo $txt; ?> </body> </html>
Avec 2 décimales : 123,00
With no decimals: 123