I have a JSON string that contains some key with the following value: 123.00. When I use json_decode function I get the decoded string where the previous key equal to 123, not to 123.00. Is there a way to correct decode such values without wrapping into quotes?
Share
This is currently being brought up as a PHP bug:
Bug Report: https://bugs.php.net/bug.php?id=50224
In the future, there may be functionality to pass a flag through the
optionsparameter for stricter typing. For now, however, wrapping it in quotes will have to suffice.