I have something like this. I want to access "name" attribute. I can access it by
foreach($items as $item)
{echo $item->name}
I have tried
echo $items[0]['name'] but it doesn't work.
Array
(
[0] => stdClass Object
(
[term_id] => 7
[name] => Video/Animacija
[slug] => videoanimacija
[term_group] => 0
[term_taxonomy_id] => 7
[taxonomy] => portfolio_technologies
[description] =>
[parent] => 0
[count] => 17 [filter] => raw
)
)