public function _remap($method) {
	$this->load->view('header');
	if(method_exists($this,$method)) {
		$this->{"{$method}"}();
	}
	$this->load->view('footer');
}
function _remap($method, $params=array()) {
	$this->lib->header();
	if(method_exists($this, $method)) { 
		$this->$method($params);
	} else {
		show_404();
	}
	$this->lib->footer();
}
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,