findBy{$Field} with Zend_Db_Table
A quick post to show how one can easily implement a findByField wrapper in Zend_Db_Table: [php] /** * Implements a simple findByField wrapper */ public function __call($method, $args) { if (preg_match('/^findBy([a-zA-Z0-9]+)$/', $method, $parts)) { $field =...
Tuesday 14 Aug 2007 14:01