Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

foreach PHP Codeigniter 내에서 저장 프로시저 호출

<시간/>

'모델' 및 '컨트롤러' 내부의 코드는 아래에 표시된 코드를 포함하도록 변경해야 합니다. -

'컨트롤러' 내부

$header = $this->model_name->call_head();
foreach($header as $item) {
   $name = $item['name'];
   $array['name'] = $name;
   $array['data'] = $item['data'];
   $child_val = $this->model_name->call_child($name);
   foreach($child_val as $value) {
      $array['child'] = array(
         'child_name' => $value['child_name'],
         'child_data' => $value['child_data']
      );
   }
}

'모델' 내부

public function call_head() {
   $query = "CALL PROCEDURE_HEAD()";
   $result = $this->db->query($query)->result_array();
   $query->next_result();
   $query->free_result();
   return $result;
}
public function call_child($name) {
   $query = "CALL PROCEDURE_CHILD($name)";
   $result = $this->db->query($query)->result_array();
   $query->next_result();
   $query->free_result();
   return $result;
}