Forum Moderators: coopster
If you have stored just the object property, as it seems you have here, then the array index is likely numeric and the value of that index will be the value of the property object.
You can always dump the array to see how you stored it.
<?php
print '<pre>';
print_r($array);
var_dump($array);
print '</pre>';
?>