Advertisement
ph4x35ccb

number_format

Feb 24th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Formatando numeros e valores monetarios</title>
  5. </head>
  6. <body>
  7. <?php
  8. $saldo = 2000.00;
  9. $retirada = 133.52;
  10.  
  11. $valor = $saldo - $retirada;
  12. //numer_format armasena dados como string
  13. echo  'R$'. number_format($valor,2,',','.');
  14. //grupo de estudos https://www.facebook.com/groups/353340335260087/
  15. //irc.vircio.org #sampa
  16. ?>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement