Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

can someone please explain to me why the first one is working and the second one not? The result is in the second example simply "1".

1.

    $c = 0;
    $list = array();
    foreach ($places as $place) {
        $arr = array();
        $arr[0] = get_object_vars($place);
        $list[$c] = $arr;
        $c++;
    }
    echo json_encode(array("status" => "true", "list" => $list));

2.

    $list = array();
    foreach ($places as $place) {
        array_push($list, get_object_vars($place));
    }
    echo json_encode(array("status" => "true", "list" => $list));

Sample data for both code samples:

$places = array();

$place = new StdClass;
$place->name = 'first';
$place->location = array('x' => 0.0, 'y' => 0.0);
$places[] = $place;

$place = new StdClass;
$place->name = 'Greenwich Observatory';
$place->location = array('x' => 51.4778, 'y' => 0.0017);
$place->elevation = '65.79m';
$places[] = $place;
share|improve this question
Why don't just do : $list[] = get_object_vars($place); ? – Bartosz Grzybowski May 6 '12 at 16:45
In 2. you are missing a ). Other than that, it should work fine. – bažmegakapa May 6 '12 at 16:56
@BartoszGrzybowski Well, yes, that's basically the same. Why would it make a difference? – bažmegakapa May 6 '12 at 16:58
It works with this code: $list[] = array(get_object_vars($place)); – Torben May 6 '12 at 17:32
Sample code should be complete, concise and representative. Without sample data, the code is incomplete. Also, what exactly do you mean by the second "not working" (an almost meaningless phrase)? What do you expect, and how is that different from what you get? – outis May 6 '12 at 17:43

1 Answer

In the first case you are adding a key value pair to the array, in the second case just the value. I believe just adding the value SHOULD in fact work, but maybe

foreach ($places as $place) {
    array_push($list, array( 0 => get_object_vars($place) );
}

will work better?

share|improve this answer
This works: $list[] = array(get_object_vars($place)); – Torben May 6 '12 at 17:33
Even with multiple places? – Jasper Kennis May 6 '12 at 22:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.