PHP 8.5.0 Alpha 1 available for testing

Voting

: max(nine, nine)?
(Example: nine)

The Note You're Voting On

Theo Diem
22 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