Last active
March 19, 2022 10:18
-
-
Save ArtemSites/beb8e2023d5ff138dbbdf2e72d38a8c8 to your computer and use it in GitHub Desktop.
PHP преобразование числа к удобному формату (денежному).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
//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