class User_model extends My_model { const USER = 'qnd_user'; public $selectFields = array( 'id', 'guid', 'phone', 'userName', 'password', 'headPortraits', 'nickName', 'createTime', ); const SMS_ROLE = 'qnd_role'; public function __construct() { } }
控制器中测试如下:
public function modelTest(){ $this -> load -> model('User_model'); // 載入 model $whereArr = array( 'compare'=>array( 'userName' => 'Frank', ), ); $rs = $this -> User_model -> pageData('User_model','user',$whereArr); print_r($rs); $this -> User_model -> debugSql(); }
更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《php优秀开发框架总结》、《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《Zend FrameWork框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》