php, codeigniter

모든 메서드 공통 부분 처리하거나 없을때 처리(_remap)

디츠 2014. 10. 9. 12:10
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();
}