|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-02-21 19:24 UTC] rasmus@php.net
-Status: Open
+Status: Feedback
[2012-02-21 19:24 UTC] rasmus@php.net
[2013-02-18 00:35 UTC] pecl-dev at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 11:00:01 2025 UTC |
Description: ------------ When i'm converting some array that has inside a flot value, json_encode() will output it with a comma "," when it should convert to a point "." Reproduce code: --------------- $array['myfloat'] = 3,44; echo json_encode($array); Expected result: ---------------- {myfloat:3.44} Actual result: -------------- {myfloat:3,44}