PHP 8.4.24 Released!

Voting

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

The Note You're Voting On

kaigillmann at googlemail dot com
12 years ago
If you get "EUR" instead of the euro symbol, set the locale to utf8 charset like this:

<?php
setlocale(LC_MONETARY, 'de_DE.utf8');
echo money_format('%+n', 1234.56);
?>

<< Back to user notes page

To Top