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.

I am very new to JSON and i really need help. So I have been given this $oldAuctions object and after using PHP's json_decode function (json_decode($oldAuctions, TRUE);) it returned me something like this that has 11 objects with 9 set of name/value pairs in each...

{
    "recent_results": [
        {
            "closing_yield": "0.800",
            "auction_id": "106",
            "use_buy_it": "0",
            "issuer": "National Bank",
            "term": "1 Year",
            "is_charity": "1",
            "end_date": "12-26-2012",
            "closing_price": "100.000000",
            "issue_type": "FDICs"
        },
        {
            "closing_yield": "1.090",
            "auction_id": "339",
            "use_buy_it": "0",
            "issuer": "National Bank",
            "term": "1 Year",
            "is_charity": "1",
            "end_date": "12-12-2012",
            "closing_price": "100.000000",
            "issue_type": "FDICs"
        },
        {
            "closing_yield": "2.000",
            "auction_id": "041",
            "use_buy_it": "0",
            "issuer": "National Bank",
            "term": "5 Year",
            "is_charity": "1",
            "end_date": "09-11-2012",
            "closing_price": "100.000000",
            "issue_type": "FDICs"
        }
    ]
}

Now I need to grab each pair and save their values in an array. For example, I want to grab the auction_id and save it's values in an array.....how can I do that?

Also, just for simple testing purpose I tried to print out the values first...but that didn't work either...

foreach($oldAuctions as $IDs)       
{
   echo 'Ids: '.$IDs->auction_id;
}

I would really appreciate your help. Thank you!

share|improve this question
2  
What you posted looks like the JSON object before decoding it, not what json_decode() returned. – Barmar Jan 1 at 4:49
Oh, and my PHP is NOT the 5.3 version. Thanks! – Walahh Jan 1 at 4:49
What does $oldAuctions contain? JSON string or Array? – shiplu.mokadd.im Jan 1 at 4:52
@Barmar: oops, u r right. i actually used json_encode – Walahh Jan 1 at 4:56
@shiplu.mokadd.im: i believe it's an array (what i posted in my question) – Walahh Jan 1 at 4:58

1 Answer

up vote 2 down vote accepted

After invoking json_encode your array $oldAuctions has become a JSON string. You can not iterate through it as array or object as its a string.

As $oldAuctions is already an array you can simply use forach

foreach($oldAuctions['recent_results'] as $result){
    echo 'Ids: '.$result['auction_id']. "\n";
}
share|improve this answer
AH! i see :) Thank you! another silly question, how to save them in an array now? – Walahh Jan 1 at 5:08
$new_auctions[] = $result['auction_id']; will add the auction ID to the $new_auctions array. – Barmar Jan 1 at 5:22
Thank you!!! you saved me a restless night :) Happy new year!! – Walahh Jan 1 at 5:31

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.