load->view("welcome_message"); } /** * @brief 사이트 헤더, 푸터 자동으로 추가 */ public function _remap($method) { // brief 헤더 load $this->load->view("layer/header_v"); if(method_exists($this, $method)) { $this->{"{$method}"}(); } // @brief 푸터 load $this->load->view("layer/footer_v"); }}?>