function __construct() {
parent::__construct();
$this->load->database();
$this->load->model('test_model'); // $this->test_model->함수명() 사용가능
$this->load->helper('url'); // url 헬퍼
}
* 메서드 이름에 _를 붙이면 외부에서는 로드되지 않음
'php, codeigniter' 카테고리의 다른 글
세그먼트(segment)란? (0) | 2014.10.08 |
---|---|
index.php 주소 줄이기 (0) | 2014.10.08 |
데이터베이스 정보 설정하기 (0) | 2014.10.08 |
페이지 로딩 정보 함수들 (0) | 2014.10.08 |
도메인 기본 컨트롤러 선언 / 404 에러 컨트롤러 (0) | 2014.10.08 |