,
// 새 클래스를 수동으로 생성
$userModel = new \App\Models\UserModel();
// 모델 헬퍼 함수로 새 클래스 생성
$userModel = model('App\Models\UserModel', false);
// 모델의 공유 인스턴스 생성
$userModel = model('App\Models\UserModel');
// custom DB 연결
// 네임스페이스가 제공되지 않으면 시스템이 알고 있는
// 모든 네임스페이스를 검색하여 UserModel 클래스를 찾습니다.
$db = db_connect('custom');
$userModel = model('UserModel', true, $db);
[text]글자 수 제한 (0) | 2020.12.19 |
---|---|
[html]pc / mobile 구분 (0) | 2020.12.18 |
[Codeigniter]Array 헬퍼 (0) | 2020.11.26 |
[Codeigniter]Database Query (0) | 2020.11.25 |
[Codeigniter]Database Connection (0) | 2020.11.24 |