Call to a member function where() on string

来源:4-5 异步方式实现登录功能—用户信息的数据库校验

许安强

2017-04-17

class AdminModel extends Model {

   private $_db = '';
   public function _construct() {
       $this->_db = M('admin');
   }
   public function getAdminByUsername($username) {
       $ret = $this->_db->where('username="'.$username.'"')->find();  //说这行有问题,跟视频一样啊
       return $ret;
   }
}

是不是thinkphp没连接到mysql数据啊,报的这个错误


写回答

2回答

singwa

2017-04-17

您的construct写错了

0
0

singwa

2017-04-17

_construct  修改为 __construct

0
0

前端到后台ThinkPHP开发整站

用PHP+MySQL+Ajax开完新闻资讯整站,实现“小全栈”的梦想

3360 学习 · 1014 问题

查看课程