function __construct() {
	parent::__construct();
	$this->load->database();
	$this->load->model('test_model'); // $this->test_model->함수명() 사용가능
	$this->load->helper('url'); // url 헬퍼
}

* 메서드 이름에 _를 붙이면 외부에서는 로드되지 않음

블로그 이미지

디츠

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

,