Jump to content

Grabbing data from arrays


skippt

Recommended Posts

Hi,

 

I have an array like this:

array(2) {
  [0]=>
  object(stdClass)#6 (6) {
    ["id"]=>
    string(1) "1"
    ["title"]=>
    string(36) "Weather Forecast"
    ["link"]=>
    string(18) "link"
    ["price"]=>
    string(4) "0.83"
    ["country"]=>
    string(2) "GB"
    ["network"]=>
    string(7) "network"
  }
  [1]=>
  object(stdClass)#7 (6) {
    ["id"]=>
    string(1) "2"
    ["title"]=>
    string(33) "Media Player"
    ["link"]=>
    string(18) "link"
    ["price"]=>
    string(4) "0.71"
    ["country"]=>
    string(2) "GB"
    ["network"]=>
    string(7) "network"
  }
}

I would like to get it so that I can retrieve selected keys in each row. For example, so it will output the first ["title"], then the second ["title"] and ignore the rest of the information without calling them individually. The same for the links and so on.

 

So, I be left with a grid like:

 

Weather Forecast | link | 0.83

Media Player | link | 0.71

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/280821-grabbing-data-from-arrays/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.