Hopefully a very easy question for you. I have a PHP object, one of the properties has brackets in it (from using MIN mysql command):
stdClass Object ( [uid]
you could modify your select statement to give the field an alias like:
ex. SELECT min(time) as min_time....
then your returned object should have this indexed like so $obj->min_time.
i hope this helps.