在 Kohana 2.3 中获取自定义字段

发布于 2024-10-09 09:30:30 字数 98 浏览 2 评论 0原文

我有一个 Kohana 2.3 应用程序。对于已登录/经过身份验证的用户,我想查找 我添加到用户表中的一个名为 radius_username 的字段。

我该怎么做?

I have a Kohana 2.3 application. For the logged in/authenticated user I would like to lookup
the a field that I have added to the users table called radius_username.

How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浪菊怪哟 2024-10-16 09:30:30

最后我这样做只是为了让它发挥作用。不过,我怀疑这是啰嗦。

我碰巧在变量 $this->username 中有当前用户名,

$user = ORM::factory('user')->where('username', $this->username)->find();

现在可以通过以下方式获取半径用户名:

$user->radius_username

In the end I did this just to get it working. Although, I suspect it's long winded.

I happen to have the current username in the variable $this->username

$user = ORM::factory('user')->where('username', $this->username)->find();

Now the radius username can be gotten with:

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