Skip to content

Instantly share code, notes, and snippets.

@ArtemSites
Last active March 19, 2022 10:18
Show Gist options
  • Save ArtemSites/beb8e2023d5ff138dbbdf2e72d38a8c8 to your computer and use it in GitHub Desktop.
Save ArtemSites/beb8e2023d5ff138dbbdf2e72d38a8c8 to your computer and use it in GitHub Desktop.
PHP преобразование числа к удобному формату (денежному).
<?
//https://www.php.net/manual/ru/function.number-format.php
$oldPrice = number_format($oldPrice, 0, '', ' '); 400999 -> 400 999
$oldPrice = number_format($oldPrice, 2, ',', ' '); 400999 -> 400 999,00
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment