Is it possible to write a function in my Zend_Db_Table class which will do all the formatting on a column in the result?
E.g.
PHP Code:
$users = new Users();
$result = $users->fetchAll();
// $result->created = 000000229233 (unix timestamp)
// $result->createdFormatted = Thurs 12 Feb 2008 (function from above)
Any advice would be greatly appreciated.