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
 [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 Apr 18 17:01:28 2024 UTC