php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #66962 CLI ignores setlocale regarding number conversion
Submitted: 2014-03-26 19:07 UTC Modified: 2014-03-27 09:54 UTC
From: cpuidle at gmx dot de Assigned:
Status: Duplicate Package: CGI/CLI related
PHP Version: 5.5.10 OS: Win7 32bit
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: cpuidle at gmx dot de
New email:
PHP Version: OS:

 

 [2014-03-26 19:07 UTC] cpuidle at gmx dot de
Description:
------------
CLI ignores number formatting when locales are set

Gives in browser:
German_Germany.1252 3,1412592

Gives in CLI:
German_Germany.1252 3.1412592

Test script:
---------------
<?php
echo(setlocale(LC_ALL,array('de_DE','deu_deu'))."\n");
$p = 3.1412592;
echo((string)$p);

Expected result:
----------------
3,1412592

Actual result:
--------------
3.1412592

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2014-03-27 09:54 UTC] ab@php.net
-Status: Open +Status: Duplicate
 [2014-03-27 09:54 UTC] ab@php.net
see bug #65230
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Nov 23 11:01:28 2024 UTC