<!DOCTYPE html>
<html>
<body>

<?php
echo number_format("5000000")."<br>";
echo number_format("5000000",2)."<br>";
echo number_format("5000000",2,",",".");
?>
  
</body>
</html>