Skip to content

Instantly share code, notes, and snippets.

View PovilasKorop's full-sized avatar
💭
Explaining code in a human-friendly way.

PovilasKorop

💭
Explaining code in a human-friendly way.
View GitHub Profile
@PovilasKorop
PovilasKorop / index.php
Created February 14, 2022 06:24
PHP NumberFormatter Demo
<?php
function getFormattedNumber(
$value,
$locale = 'en_US',
$style = NumberFormatter::DECIMAL,
$precision = 2,
$groupingUsed = true,
$currencyCode = 'USD',
) {