dpxf81245 2014-09-08 06:52
浏览 49
已采纳

致命错误:在非对象上调用成员函数bind_param()

I try some codes to build a RESTful API Web Service using PHP and slim framework. (I'm using Advanced Rest Client for testing this code)

This is my codes.

private function isUserExists($email) { $stmt = $this->conn->prepare("SELECT id from users WHERE email = ?"); $stmt->bind_param("s", $email); $stmt->execute(); $stmt->store_result(); $num_rows = $stmt->num_rows; $stmt->close(); return $num_rows > 0; }

and then I got this error.

Fatal Error : Call to a member function bind_param() on a non-object on Line 113

Line 113 is : $stmt->bind_param("s", $email);

I've been looking for a solution of this problem since 2 weeks ago.

Thanks before guys :))

  • 写回答

1条回答 默认 最新

  • dousao1175 2014-09-08 07:00
    关注

    The problem lies in $this->conn->prepare, which does not return an object, as you would expect.

    For mysqli, prepare() returns FALSE on error. You can check the error message using $this->conn->error.

    This code should print your error in case of failure:

    private function isUserExists($email) {
        $stmt = $this->conn->prepare("SELECT id from users WHERE email = ?");
        if ($stmt === FALSE){
            die($this->conn->error);
        } else  {
            $stmt->bind_param("s", $email);
            $stmt->execute();
            $stmt->store_result();
            $num_rows = $stmt->num_rows;
            $stmt->close();
            return $num_rows > 0;
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 对于知识的学以致用的解释
  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败