Edit report at http://bugs.php.net/bug.php?id=52904&edit=1
ID: 52904 Updated by: [email protected] Reported by: nadavvin at gmail dot com Summary: json_decode don't make good object -Status: Feedback +Status: Open Type: Bug Package: JSON related Operating System: linux PHP Version: 5.3.3 Block user comment: N New Comment: Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. Previous Comments: ------------------------------------------------------------------------ [2010-09-22 09:56:40] [email protected] Surely your last console line should be: echo $g['a']; (considering that $f is the object, and $g the array)? ------------------------------------------------------------------------ [2010-09-22 09:52:35] nadavvin at gmail dot com Description: ------------ php > echo $e php > ; {"a":1,"b":2} php > $f = json_decode($e); php > var_dump($f); object(stdClass)#2 (2) { ["a"]=> int(1) ["b"]=> int(2) } php > $g=(array)$f; php > echo $f['a']; PHP Fatal error: Cannot use object of type stdClass as array in php shell code on line 1 Expected result: ---------------- php > $a=array('a'=>1,'b'=>2); php > $b = (object)$a; php > $c = (array)$b; php > var_dump($a); array(2) { ["a"]=> int(1) ["b"]=> int(2) } php > echo $c['a']; 1 Actual result: -------------- PHP Fatal error: Cannot use object of type stdClass as array in php shell code on line 1 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=52904&edit=1
