Reputation: 92
Array
(
[0] => stdClass Object
(
[domain] => alphaanalysis.org
[status] => available
)
}
I have the array and it's elements like this. I just need the value of domain key. How to get that, I don't know. Please help me.
Upvotes: 0
Views: 81
Reputation: 4656
<?php
$array[0]->domain;
?>
If your array is $array then you can try this.
Upvotes: 2