I know it's probably a dumb question but I'm unable to go over this.
I have this Object array which looks like this
stdClass Object
(
[1] => stdClass Object
(
[Product] => Brand Manual
[Type] => Custom
[Width_(inches)] => 11
[Depth_(inches)] => 8.5
[Color_Type] => B/W
[Artistic_Discretion] => Full Artistic Discretion(AD3)
[Brief/Instructions] => edasd
Product Dimension - 8.5" x 11"
[Copy_Translation] => No
[Additional_Versions] => 0
)
)
I want the Brand Manual
so I do this $myValue = $myObject->1->Product;
It doesn't work. The integer '1' seems to be the problem. I tried adding quotes too but it doesn't work either.Please help.