Edit report at https://bugs.php.net/bug.php?id=65616&edit=1

 ID:                 65616
 Updated by:         r...@php.net
 Reported by:        glenjamin at gmail dot com
 Summary:            json_decode now allows single quoted keys
-Status:             Assigned
+Status:             Closed
 Type:               Bug
 Package:            JSON related
 Operating System:   CentOS
 PHP Version:        5.5.3
 Assigned To:        remi
 Block user comment: N
 Private report:     N

 New Comment:

The fix for this bug has been committed.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.

 For Windows:

http://windows.php.net/snapshots/
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------
[2013-09-04 16:03:49] r...@php.net

This is a json-c regression already fixed in upcoming version 1.3.2

------------------------------------------------------------------------
[2013-09-04 15:58:48] ni...@php.net

Sounds like a json-c bug.

------------------------------------------------------------------------
[2013-09-04 15:34:13] glenjamin at gmail dot com

Description:
------------
It appears that json_decode is less strict in newer versions of PHP, and allows 
object keys to be single quoted.

Test script:
---------------
$ php -v
PHP 5.5.3 (cli) (built: Aug 21 2013 17:57:15)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2013 Zend Technologies
    with Zend OPcache v7.0.3-dev, Copyright (c) 1999-2013, by Zend Technologies
    with Xdebug v2.2.3, Copyright (c) 2002-2013, by Derick Rethans

$ php -r "var_dump(json_decode(\"{'a':1}\"));"
class stdClass#1 (1) {
  public $a =>
  int(1)
}

Expected result:
----------------
json_decode should return NULL and make the error available through 
json_last_error()

Actual result:
--------------
The string is parsed into an object


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=65616&edit=1

Reply via email to