这是我用于我的 zend 框架模型的基本代码。
class Model_FormMapper extends Zend_Db_Table_Abstract
{
protected $_name = 'tblMapper';
protected $_primary = 'mapId';
public function insertColumns($arrData){
$db = Zend_Db_Table::getDefaultAdapter();
$sql = $this->insert($arrData);
$lastId = $this->_db->lastInsertId();
return $lastId;
}
}
在我的模型中我不喜欢的一件事是在每种方法中初始化适配器。
$db = Zend_Db_Table::getDefaultAdapter();
谁能告诉我编写zend模型的更好解决方案。