使用 PHP 和 Kohana 3,可以递归地查找并输出任何模型的关系吗?
假设我们有一个包含许多帖子的用户模型。
帖子模型有很多类别
帖子模型也有很多评论。
我们如何动态地找到用户模型所具有的关系?
这个想法是为一个网站创建一个管理后端,我可以在其中拥有一个函数,当传递模型时,可以检索所有数据与该对象相关,并根据找到的数据的关系来显示它。
我猜我需要访问模型本身,而不是实例。
任何帮助将不胜感激,谢谢。
Let's say we have a User Model that has many Posts.
The Posts Model has many Categories
The Posts Model also has many Comments.
How do we find dynamically, the relationships that the User Model has?
The idea is to make an admin backend to a site, where I can have one function, that when passed a model, can retrieve all data related to that Object, and show it based on the found data's relationship.
I'm guessing I need to access the Model Itself, and not an instance.
Any help would be appreciated, thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我终于做到了,所以如果其他人想要的话,这是我使用的代码。
我并不声称自己是一名优秀的程序员,我还是个新手。
如果有人真的要使用这个,并且需要一些关于我的逻辑的帮助,我会完全注释掉它,但今晚我空着……
I Finally did this, so here's the code I used if anyone else wants it.
I make no claims to being a good programmer, I'm pretty new.
If someone actually was going to use this, and needed some help with my logic, I'll comment it out fully, but I'm running on empty tonight...