object(Term)#32 (10) {
["term_id":protected]=> int(11589)
["session_id":protected]=> string(5) "11275"
["site_id":protected]=> int(9999999)
["data":protected]=> array(62) {
["term_id"]=> string(5) "11589"
["term_name"]=> string(9) "Full Year"
["start_date"]=> string(10) "2013-09-02"
["end_date"]=> string(10) "2014-06-14"
}
}
I get this data from a var_dump and I want to access "start_date". How to do this?
let's say
var_dump($term);
I did:
var_dump($term["start_date"]); and I get a NULL.