CleverCloud / Quercus

Java implementation of PHP, by Caucho's Technology, Clever Cloud Development Branch
http://github.com/CleverCloud/Quercus/wiki
GNU General Public License v2.0
50 stars 12 forks source link

Caucho #0004363: sprintf method with "F" formatting should be non localized... #23

Closed Kdecherf closed 13 years ago

Kdecherf commented 13 years ago

From Caucho's bugtracker : The php method sprintf with usage of formatting non locale - aware should be treated without Locale consideration. F - the argument is treated as a float, and presented as a floating-point number (non-locale aware). Available since PHP 4.3.10 and PHP 5.0.3.

Locale::setDefault(Locale::ITALIAN); echo sprintf('%.1F', 1.0)

should produced 1.0 instead of 1,0 result.

Kdecherf commented 13 years ago

Unable to reproduce