0

您好,我想在 CI 和 DB 之间添加另一层。我想编写我的函数,例如

$user = new User_Model()
$user->username="xxx";
$entityManager->saveOrUpdateObject($user);

或者

$user = $entityManager->loadObject(array('table' => 'user','id' => 5));

已经在使用内置在 codeigniter 中的本机 db 函数。我是通过基本模型类来做的,但我想要另一个类来做,因为我想使用我的 IDE 的代码完成能力。

PS我从http://net.tutsplus.com/tutorials/php/6-codeigniter-hacks-for-the-masters/激活了#1 hack

4

0 回答 0