Zend_Auth - 被迫使用 Zend_DB 进行快速安装/使用?
我正在考虑使用 Zend_Auth 作为网站的身份验证“机制”(组件)。快速浏览后,我意识到对于数据库表身份验证,我还必须使用 Zend_Db 组件。
有人尝试过这种方法吗?我是否被迫使用和/或扩展/实现 Zend_DB 方法/接口,以便将 Zend_Auth 集成到网站(Web 应用程序?)中。
我可以将自己的数据库抽象层插入到 Zend_Auth 组件中并指示 Zend_Auth 轻松地将其用于数据库表身份验证吗?我试图弄清楚这样的解决方案是否值得付出努力。
i am thinking of using Zend_Auth as the Authentication "mechanism" (component) for a web site. After a quick look a realized that for Database Table Authentication i will also have to use the Zend_Db component.
Has anyone tried this approach? Am i forced to use and/or extend/implement the Zend_DB methods/interfaces in order to have Zend_Auth integrated in a web site (web application?).
Can i plug-in my own DB Abstraction layer into the Zend_Auth component and instruct Zend_Auth to use it for Database Table Authentication easily? I am trying to figure out if such a solution is worth the effort.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以做到这一点,您只需要编写自己的 Zend_Auth 适配器来利用您的 Abastraction 层。它实际上并没有那么复杂,因为没有那么多需要实现/重载的方法。我已经使用 Doctrine、原始 PDO 连接以及基于 Zend_Db 的简单 ORM 完成了此操作。如果您对实际功能的要求很低,您应该能够在最短的时间内(几小时或几分钟而不是几天)完成它。
You could do it you just need to write your own Zend_Auth adapter that will make use of your Abastraction layer. Its not really that complex as there arent that many required methods to implement/overload. Ive done it using Doctrine, a raw PDO connection, as well as a Zend_Db based simple ORM. If youre requirements for the actual functionality are minimal you should be able to get it done in a minimal amount of time (hours or minutes as opposed to days).