的select_array()的使用()的用法:select_array的查詢生成器
$value = array('username', 'email', 'firstname');
$result = DB::select_array($value) ->from('user') ->where('userid', '=', '1') ->execute() ->as_array();
print_r($result[0]);
的select_array()的使用()的用法:select_array的查詢生成器
$value = array('username', 'email', 'firstname');
$result = DB::select_array($value) ->from('user') ->where('userid', '=', '1') ->execute() ->as_array();
print_r($result[0]);
試着用這可能是它可以幫助你。
$value = array(
array('username', 'uname'),
array('email', 'mail'),
array('firstname', 'fname')
);
DB::select_array($value)
->from('user')
->where('userid', '=', '1')
->execute()
->as_array();
尼斯看看。現在,你能問你的問題嗎? –
如何在select_array()中使用別名? – mangala
如果你想問__在查詢生成器中使用select_array()__,那麼它意味着你想要從查詢中獲取的字段的名稱,並且取出必要的字段而不是所有字段是一個好習慣。 –