gpt4 book ai didi

php - Kohana 数据库选择,字段列表

转载 作者:行者123 更新时间:2023-11-29 09:04:04 24 4
gpt4 key购买 nike

在 Kohana 中,如果我想选择字段“id”和“用户名”,我会这样做:

$record = DB::select('id', 'username')
->from('users')
->where('id', '=', 1)
->as_object()
->execute();

但是如果我需要选择的字段列表位于数组中,该怎么做,如下所示:

$fields = array('id', 'username');

在这种情况下如何使用 DB::select?

最佳答案

您正在寻找DB::select_array()

您还可以使用$record = call_user_func_array('DB::select', $fields),然后继续构建查询;它可能很难看,但它也有效:)

关于php - Kohana 数据库选择,字段列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7618898/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com