Zend 框架 fetchAll
我可以重写模型中的 fetchall 方法吗? 每次调用 fetchAll 时我都需要检查。 该模型扩展了 Zend_db_table_abstract
Can i override fetchall method in a model? I need to check sth everytime fetchAll is called. The model extends Zend_db_table_abstract
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。 只需在模型中定义一个新的 fetchAll() 方法,其结构与 Zend_db_table_abstract 方法相同(即相同的输入/输出),然后在方法末尾调用父方法:
parent::fetchAll($params)
Andrew
Yes. Just define a new fetchAll() method in your model with the same construction as the Zend_db_table_abstract method (ie same input / output) then at the end of your method call the parent method:
parent::fetchAll($params)
Andrew
要重写此方法,您需要子类化 Zend_Db_Table_Abstract。 像这样:
然后确保您的模型扩展 My_Db_Table_Abstract 。 这样,您将始终继承重写的 fetchAll 方法。
To override this method you would need to subclass the Zend_Db_Table_Abstract. Like so:
Then make sure your models extend My_Db_Table_Abstract instead. This way, you will always inherit your overridden fetchAll method.