libraries 질문입니다.
- 아기새
- 1
- 2,067
- 글주소
- 07-26
application\libraries\Board.php 부분인데요
class Board extends CI_Controller
{
private $CI;
private $board_id;
private $board_key;
private $group;
private $admin;
private $call_admin;
function __construct()
{
$this->CI = & get_instance();
}
~~~~
}
클래스에 extends CI_Controller 참조를 하는 이유가 무엇인가요
function __construct() {
$this->CI = & get_instance();
}
여기서 get_instance로 이미 가져오는데
extends CI_Controller 해줄필요가있나요?? 지워도 잘돌아가는데.