donglang6656 2016-08-22 16:02
浏览 30

如何修复调用成员函数prepare()对字符串[duplicate]

This question already has an answer here:

I have been trying to fix this error: PHP Fatal error: Call to a member function prepare() on string in /home/...../lib/library.php on line 91 I have also check this link: Reference - What does this error mean in PHP? and i don't seem to understand how to relate it to my problem at hand. Can anyone help? this is the script line affected:

public function Login($username, $password)
    {
        try {
            $db = DB();
            $query = $db->prepare("SELECT user_id FROM users WHERE (username=:username OR email=:username) AND password=:password");
            $query->bindParam("username", $username, PDO::PARAM_STR);
            $enc_password = hash('sha256', $password);
            $query->bindParam("password", $enc_password, PDO::PARAM_STR);
            $query->execute();
            if ($query->rowCount() > 0) {
                $result = $query->fetch(PDO::FETCH_OBJ);
                return $result->user_id;
            } else {
                return false;
            }
        } catch (PDOException $e) {
            exit($e->getMessage());
        }
    }
</div>
  • 写回答

1条回答 默认 最新

  • dongwuwei0718 2016-08-22 16:04
    关注

    Your problem is here:

    $db = DB();
    

    If you were to var_dump() the $db variable you'd see it is equal to a string with a value of something like DB or DB().

    It should be:

    $db = new DB();
    
    评论

报告相同问题?

悬赏问题

  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记