Zend_Auth - 被迫使用 Zend_DB 进行快速安装/使用?

发布于 2024-08-20 21:23:53 字数 256 浏览 8 评论 0原文

我正在考虑使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞慾 2024-08-27 21:23:53

您可以做到这一点,您只需要编写自己的 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文