어떻게 INDEXED 배열 결과를 얻을 수 있습니까?Kohana 3.2에서 쿼리 결과로 인덱스 배열을 가져올 수 있습니까?
$qry1 = DB::select('name')->from('people')->execute();
$assoc_array = $qry1->as_array();
$object = $qry1->as_object();
// $indexed_array = [...]
학습 목적으로 만 감사합니다.
이 추천 같습니다
$indexed_result[0]; // Name
// $indexed_result[1];
// $indexed_result[2];
고마워! 정확히 내가 무엇을 찾고 있었는지. –