php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12647 sprintf, doubles and locale
Submitted: 2001-08-08 08:03 UTC Modified: 2002-06-16 09:13 UTC
From: artur at 2i dot pl Assigned:
Status: Closed Package: Strings related
PHP Version: 4.0.6 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: artur at 2i dot pl
New email:
PHP Version: OS:

 

 [2001-08-08 08:03 UTC] artur at 2i dot pl
sprintf ignores locale settings and always use . as the decimal separator.

Try this:

   setlocale("LC_NUMERIC", "pl_PL"); 
   echo sprintf("%.2f",doubleval("1,25"));

Result:
   1.25
(should be 1,25)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-16 09:13 UTC] hholzgra@php.net
fixed in CVS

and

  setlocale("LC_NUMERIC", "pl_PL"); 
  echo sprintf("%.2f",1.25);

will soon work (again?), too
no need to use the doubleval() workaround anymore


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 11:01:27 2024 UTC