JSON member access issue

JSON member access issue

am 22.04.2008 20:32:28 von Logos

I am using PHP with the JSON extension function json_decode.

I have a JSON with a member named "1" (ie) { "1":"somedata" }

Trying to access this via the -> operator doesn't work, nor does
["1"].

Putting the JSON into a foreach loop DOES access the member:

foreach($json as $key=>$value) {
echo("$key
");
}
//outputs '1'

Is this an error on my part, an oversight in the PHP JSON
implementation, or something else? Why can foreach grab the members,
but I can't access them?

Thanks for your time!

Tyler

Re: JSON member access issue

am 23.04.2008 00:14:24 von luiheidsgoeroe

On Tue, 22 Apr 2008 20:32:28 +0200, Logos wrote:=


> I am using PHP with the JSON extension function json_decode.
>
> I have a JSON with a member named "1" (ie) { "1":"somedata" }
>
> Trying to access this via the -> operator doesn't work, nor does
> ["1"].
>
> Putting the JSON into a foreach loop DOES access the member:
>
> foreach($json as $key=3D>$value) {
> echo("$key
");
> }
> //outputs '1'
>
> Is this an error on my part, an oversight in the PHP JSON
> implementation, or something else? Why can foreach grab the members,
> but I can't access them?


The problem is that while json_decode is able to extract it:
object(stdClass)#1 (1) {
["1"]=3D>
string(8) "somedata"
}

"1" is not a valid property name to use directly.

Workarounds:
Option 1, suitable for single known variable:
$var =3D json_decode('{ "1":"somedata" }');
$name =3D '1';
echo $var->$name;
?>

Option 2, suited for more generic processing:
function json_object_to_named_array($var){
if(!is_object($var)){
trigger_error('No object given');
return;
}
$return =3D get_object_vars($var);
foreach($return as &$value){
if(is_object($value)) $value =3D json_object_to_named_array($value);
}
return $return;
}
$test =3D array('foo' =3D> 'bar','foz' =3D> array('fox' =3D> 'bax'));
$json =3D json_encode($test);
var_dump($json);
$var =3D json_decode($json);
var_dump($var);
$var =3D json_object_to_named_array($var);
var_dump($var);
?>
Output:
string(33) "{"foo":"bar","foz":{"fox":"bax"}}"
object(stdClass)#1 (2) {
["foo"]=3D>
string(3) "bar"
["foz"]=3D>
object(stdClass)#2 (1) {
["fox"]=3D>
string(3) "bax"
}
}
array(2) {
["foo"]=3D>
string(3) "bar"
["foz"]=3D>
array(1) {
["fox"]=3D>
string(3) "bax"
}
}
-- =

Rik Wasmus

Re: JSON member access issue

am 23.04.2008 22:16:11 von Logos

On Apr 22, 3:14 pm, "Rik Wasmus" wrote:
> On Tue, 22 Apr 2008 20:32:28 +0200, Logos wrote:
> > I am using PHP with the JSON extension function json_decode.
>
> > I have a JSON with a member named "1" (ie) { "1":"somedata" }
>
> > Trying to access this via the -> operator doesn't work, nor does
> > ["1"].
>
> > Putting the JSON into a foreach loop DOES access the member:
>
> > foreach($json as $key=>$value) {
> > echo("$key
");
> > }
> > //outputs '1'
>
> > Is this an error on my part, an oversight in the PHP JSON
> > implementation, or something else? Why can foreach grab the members,
> > but I can't access them?
>
> The problem is that while json_decode is able to extract it:
> object(stdClass)#1 (1) {
> ["1"]=>
> string(8) "somedata"
>
> }
>
> "1" is not a valid property name to use directly.
>
> Workarounds:
> Option 1, suitable for single known variable:
> > $var = json_decode('{ "1":"somedata" }');
> $name = '1';
> echo $var->$name;
> ?>
>
> Option 2, suited for more generic processing:
> > function json_object_to_named_array($var){
> if(!is_object($var)){
> trigger_error('No object given');
> return;
> }
> $return = get_object_vars($var);
> foreach($return as &$value){
> if(is_object($value)) $value = json_object_to_named_array($value);
> }
> return $return;}
>
> $test = array('foo' => 'bar','foz' => array('fox' => 'bax'));
> $json = json_encode($test);
> var_dump($json);
> $var = json_decode($json);
> var_dump($var);
> $var = json_object_to_named_array($var);
> var_dump($var);
> ?>
> Output:
> string(33) "{"foo":"bar","foz":{"fox":"bax"}}"
> object(stdClass)#1 (2) {
> ["foo"]=>
> string(3) "bar"
> ["foz"]=>
> object(stdClass)#2 (1) {
> ["fox"]=>
> string(3) "bax"
> }}
>
> array(2) {
> ["foo"]=>
> string(3) "bar"
> ["foz"]=>
> array(1) {
> ["fox"]=>
> string(3) "bax"
> }}
>
> --
> Rik Wasmus

Ah, I thought it might be something like that then. The JSON notation
is perfectly fine, but PHP's grammar won't let me directly access the
incompatible JSON format. I shall just have to live with it then.

Thanks!

Tyler

Re: JSON member access issue

am 24.04.2008 03:18:14 von Alexey Kulentsov

Logos wrote:

> Ah, I thought it might be something like that then. The JSON notation
> is perfectly fine, but PHP's grammar won't let me directly access the
> incompatible JSON format. I shall just have to live with it then.

:)

Try echo $var->{1};

Re: JSON member access issue

am 24.04.2008 18:29:38 von Logos

On Apr 23, 6:18 pm, Alexey Kulentsov wrote:
> Logos wrote:
> > Ah, I thought it might be something like that then. The JSON notation
> > is perfectly fine, but PHP's grammar won't let me directly access the
> > incompatible JSON format. I shall just have to live with it then.
>
> :)
>
> Try echo $var->{1};

YOU, sirrah, are my HERO! Thank you much much much!!!

:D

Tyler