php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #68231 Unexpected identifier in the json_decode
Submitted: 2014-10-15 09:38 UTC Modified: 2014-10-15 16:56 UTC
From: armin390 at gmail dot com Assigned:
Status: Not a bug Package: JSON related
PHP Version: 5.6.1 OS: Debian sid
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: armin390 at gmail dot com
New email:
PHP Version: OS:

 

 [2014-10-15 09:38 UTC] armin390 at gmail dot com
Description:
------------
When I try to decode a json string that include a key with identifiers,then it will be converted to an invalid propery name.

Test script:
---------------
<?php
$string = '{"test-me+for": "X"}';
var_dump(json_decode($string)); 

Expected result:
----------------
Fatal error: syntax error, unexpected ...

Actual result:
--------------
object(stdClass)#1 (1) { ["test-me+for"]=> string(1) "X" }

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2014-10-15 16:56 UTC] nikic@php.net
-Status: Open +Status: Not a bug
 [2014-10-15 16:56 UTC] nikic@php.net
"test-me+for" is a valid property name in PHP. You can access it using $obj->{"test-me+for"}.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Oct 27 16:01:27 2024 UTC