您好我想在CI和DB之间添加另一个层..我想编写像
这样的函数$user = new User_Model()
$user->username="xxx";
$entityManager->saveOrUpdateObject($user);
或
$user = $entityManager->loadObject(array('table' => 'user','id' => 5));
它们正在使用内置在codeigniter中的本机数据库函数..我是通过基本模型类来做的,但我想要另外一个类来做它,因为我想使用我的IDE的代码完成功能..
P.S我从http://net.tutsplus.com/tutorials/php/6-codeigniter-hacks-for-the-masters/
激活#1 hack