Jump to content

sprintf - dot, comma


web_master

Recommended Posts

Hi,

 

a little problem of differences in US and european price display

 

I write prices like this:

 

1,00

10,00

100,00

1.000,00

 

 

BAD VERSION

with formatting string: sprintf("%.2f", $request['component_price_eu']) looks like:

- in my dbase is (float) nr: 2 (in order this looks like: 2.000 EUR)

- in my dbase is (float) nr: 2000 (in order this looks like: 2000.000 EUR)

 

GOOD VERSION

- in my dbase is (float) nr: 2 (in order this must looks like: 2,000 EUR)

- in my dbase is (float) nr: 2000 (in order this must looks like: 2.000,000 EUR)

 

How can get a "GOOD VERSION"?

 

thnxs

 

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/96364-sprintf-dot-comma/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.