PHP 8.4.24 Released!

Voting

: three minus two?
(Example: nine)

The Note You're Voting On

Theo Diem
23 years ago
formatting numbers may be more easy if u use number_format function.

I also wrote this :
function something($number)
{
    $locale = localeconv();
    return number_format($number,
       $locale['frac_digits'],
        $locale['decimal_point'],
        $locale['thousands_sep']);
}

hope this helps =)
[]'s

<< Back to user notes page

To Top