Kohana 3(ORM 或 DB)返回单个字段

发布于 2024-11-16 13:34:54 字数 297 浏览 3 评论 0原文

使用 DB 或 ORM 从一个字段检索结果的最佳方法是什么?

例如,我需要一组用户的朋友 id 将它们传递给其他函数。我目前正在这样做:

$friends_ids = $this->friends->find_all()->as_array('id', 'name');

$friends = array();

foreach ($friends_ids as $k => $v)
{
    array_push($friends, $k);
}

也许有更好的方法?

What is the best way to retrieve results from one field using DB or ORM?

For example, I need an array of user's friends ids to pass them to other function. I'm currently doing it like this:

$friends_ids = $this->friends->find_all()->as_array('id', 'name');

$friends = array();

foreach ($friends_ids as $k => $v)
{
    array_push($friends, $k);
}

Maybe there's a better way?

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

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

发布评论

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

评论(1

Spring初心 2024-11-23 13:34:54
$friends = $this->friends->find_all()->as_array(NULL, 'id');
$friends = $this->friends->find_all()->as_array(NULL, 'id');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文