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();
}
'php, codeigniter' 카테고리의 다른 글
CodeIgniter 사용자 가이드 Version 2.1.0 (0) | 2014.10.09 |
---|---|
이메일 유효값 검사하기 및 중복확인 (0) | 2014.10.09 |
xss 필터링 설정하기 (0) | 2014.10.09 |
기본 로드 라이브러리 설정 (0) | 2014.10.08 |
세그먼트(segment)란? (0) | 2014.10.08 |