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

Fatal error: Call to a member function query() on a non-object in(致命错误:在非对象上调用成员函数 query())
本文介绍了致命错误:在非对象上调用成员函数 query()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

致命错误:在线调用非对象上的成员函数 query():$result = $conn->query($sql) 或 die(mysqli_error());

Fatal error: Call to a member function query() on a non-object on line: $result = $conn->query($sql) or die(mysqli_error());

谁知道出了什么问题以及如何解决?

Who knows whats wrong and how to fix it?

<?php
function dbConnect($usertype, $connectionType = 'mysqli') {
  $host = 'localhost';
  $db = 'phpsols';
  if ($usertype  == 'read') {
    $user = 'psread';
    $pwd = '123';
  } elseif ($usertype == 'write') {
    $user = 'pswrite';
    $pwd = '123';
  } else {
    exit('Unrecognized connection type');
  }
  if ($connectionType == 'mysqli') {
    return new mysqli($host, $user, $pwd, $db) or die ('Cannot open database');
  } else {
    try {
      return new PDO("mysql:host=$host;dbname=$db", $user, $pwd);
    } catch (PDOException $e) {
      echo 'Cannot connect to database';
      exit;
    }
  }
}

// connect to MySQL
$conn = dbConnect('read');
// prepare the SQL query
$sql = 'SELECT * FROM images';
// submit the query and capture the result
**$result = $conn->query($sql) or die(mysqli_error());**
// find out how many records were retrieved
$numRows = $result->num_rows;
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Connecting with MySQLi</title>
</head>

<body>
<p>A total of <?php echo $numRows; ?> records were found.</p>
</body>
</html>

推荐答案

罪魁祸首很可能是这一行:

The culprit is most likely this line:

return new mysqli($host, $user, $pwd, $db) or die ('Cannot open database');

do xyz or die() 构造与 return 语句结合会导致有趣的行为(即整个事情被解释为 OR 表达式,因为 new mysqli 永远不会为假,永远不会处理死".).在此处查看类似案例.

The do xyz or die() construct leads to funny behaviour in conjuction with the return statement (i.e. the whole thing is interpreted as an OR expression and because new mysqli will never be false, the "die" is never processed.). See a similar case here.

改为这样做:

$result = new mysqli($host, $user, $pwd, $db) ;
if (!$result) die (....);
return $result;

另外,有点相关,我认为你永远不会发现 PDO 连接错误,因为:

Also, slightly related, I think you will never catch a PDO connection error because this:

return new PDO("mysql:host=$host;dbname=$db", $user, $pwd);

总是退出函数,永远不会到达catch块.与您的实际问题一样,解决方案是首先将对象传递给 $result 变量.

will always exit the function, and never reach the catch block. As with your actual problem, the solution is to pass the object to a $result variable first.

这篇关于致命错误:在非对象上调用成员函数 query()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)