|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-18 12:26 UTC] sander@php.net
[2002-11-10 18:37 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 16:00:01 2025 UTC |
a.php <? setlocale(LC_ALL,'ru_RU'); $a = 1.3; var_dump($a); include('b.php'); ?> b.php <? $a = 1.3; var_dump($a); ?> shell>GET http://host/a.php float(1.3) float(1) ru_RU use `,` for decimal separator. Workaround for this bug: setlocale(LC_NUMERIC,'C');