No.3560【引用】あなたCodeIgniterの別のモデルの中からモデルへのアクセスはできますか?
class SomeModel extends Model { function doSomething($foo) { $CI =& get_instance(); $CI->load->model('SomeOtherModel','NiceName',true); // use $CI instead of $this to query the other models $CI->NiceName->doSomethingElse(); } }