警告:mysqli_num_rows()期望参数1为mysqli_result,在中给出null [英] Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, null given in

查看:53
本文介绍了警告:mysqli_num_rows()期望参数1为mysqli_result,在中给出null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图将mysql更改为mysqli.当我这样做时,我会出错.我尝试了一切,但没有找到解决方案.

I tried to change my mysql to mysqli. And when i do this i get error. I tried everything but i found no solution for this.

我所遇到的错误:(您看到的并不是全部错误)

The error that I have: (what you see is not all the errors)

警告:mysqli_query()期望参数1为mysqli,在
中为null C:\ xampp \ htdocs \ follow \ include \ database.php在第219行

Warning: mysqli_query() expects parameter 1 to be mysqli, null given in
C:\xampp\htdocs\follow\include\database.php on line 219

警告:mysqli_num_rows()期望参数1为mysqli_result,在第220行的C:\ xampp \ htdocs \ follow \ include \ database.php中给出空值

Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, null given in C:\xampp\htdocs\follow\include\database.php on line 220

警告:mysqli_query()期望参数1为mysqli,在231行的C:\ xampp \ htdocs \ follow \ include \ database.php中给出空值

Warning: mysqli_query() expects parameter 1 to be mysqli, null given in C:\xampp\htdocs\follow\include\database.php on line 231

警告:mysqli_num_rows()期望参数1为mysqli_result,在232行的C:\ xampp \ htdocs \ follow \ include \ database.php中给出空值

Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, null given in C:\xampp\htdocs\follow\include\database.php on line 232

警告:mysqli_query()期望参数1为mysqli,在第102行的C:\ xampp \ htdocs \ follow \ include \ database.php中给出空值

Warning: mysqli_query() expects parameter 1 to be mysqli, null given in C:\xampp\htdocs\follow\include\database.php on line 102

...更多错误

这是我的php代码

<?php
/**
 * Please subscribe to our feeds at http://blog.geotitles.com for more such tutorials
 */
include("constants.php");
class MySQLDB
  {
  var $connection;         //The MySQL database connection
 var $num_active_users;   //Number of active users viewing site
 var $num_active_guests;  //Number of active guests viewing site
 var $num_members;        //Number of signed-up users
 /* Note: call getNumMembers() to access $num_members! */

   /* Class constructor */
  function MySQLDB(){
  /* Make connection to database */

 $con = mysqli_connect(DB_SERVER, DB_USER, DB_PASS,DB_NAME);

  // Check connection
 if (mysqli_connect_errno())
     {
   echo "Failed to connect to MySQL: " . mysqli_connect_error();
    }



    /** 
    * Only query database to find out number of members
    * when getNumMembers() is called for the first time,
    * until then, default value set.
    */
    $this->num_members = -1;

    if(TRACK_VISITORS){
     /* Calculate number of users at site */
     $this->calcNumActiveUsers();

     /* Calculate number of guests at site */
     $this->calcNumActiveGuests();
    }
   }


   function confirmUserPass($username, $password){
   GLOBAL $con;
   /* Add slashes if necessary (for query) */
  if(!get_magic_quotes_gpc()) {
      $username = addslashes($username);
   }

   /* Verify that user is in database */
   $q = "SELECT password FROM ".TBL_USERS." WHERE username = '$username'";
   $result = mysqli_query($con,$q);
   if(!$result || (mysqli_num_rows($result) < 1)){
     return 1; //Indicates username failure
   }

   /* Retrieve password from result, strip slashes */
   $dbarray = mysqli_fetch_array($result);
   $dbarray['password'] = stripslashes($dbarray['password']);
   $password = stripslashes($password);

  /* Validate that password is correct */
  if($password == $dbarray['password']){
     return 0; //Success! Username and password confirmed
   }
   else{
     return 2; //Indicates password failure
  }
  } 


   function confirmUserID($username, $userid){
   GLOBAL $con;
  /* Add slashes if necessary (for query) */
  if(!get_magic_quotes_gpc()) {
      $username = addslashes($username);
  }

  /* Verify that user is in database */
  $q = "SELECT userid FROM ".TBL_USERS." WHERE username = '$username'";
  $result = mysqli_query($con,$q);
  if(!$result || (mysqli_num_rows($result) < 1)){
     return 1; //Indicates username failure
   }

  /* Retrieve userid from result, strip slashes */
  $dbarray = mysqli_fetch_array($result);
  $dbarray['userid'] = stripslashes($dbarray['userid']);
  $userid = stripslashes($userid);

  /* Validate that userid is correct */
  if($userid == $dbarray['userid']){
     return 0; //Success! Username and userid confirmed
  }
  else{
     return 2; //Indicates userid invalid
  }
  }


  function usernameTaken($username){
   GLOBAL $con;
    if(!get_magic_quotes_gpc()){
     $username = addslashes($username);
   }
  $q = "SELECT username FROM ".TBL_USERS." WHERE username = '$username'";
  $result = mysqli_query($con,$q);
  return (mysqli_numrows($result) > 0);
  }


 function usernameBanned($username){ 
 GLOBAL $con;
  if(!get_magic_quotes_gpc()){
     $username = addslashes($username);
  }
  $q = "SELECT username FROM ".TBL_BANNED_USERS." WHERE username = '$username'";
  $result = mysqli_query($con,$q);
  return (mysqli_numrows($result) > 0);
  }

function addNewUser($username, $password, $email){
GLOBAL $con;
  $time = time();
  /* If admin sign up, give admin user level */
  if(strcasecmp($username, ADMIN_NAME) == 0){
     $ulevel = ADMIN_LEVEL;
  }else{
     $ulevel = USER_LEVEL;
  }
  $q = "INSERT INTO ".TBL_USERS." VALUES ('$username', '$password', '0', $ulevel,     '$email', $time)";
  return mysqli_query($con,$q);
  }


 function updateUserField($username, $field, $value){
  $q = "UPDATE ".TBL_USERS." SET ".$field." = '$value' WHERE username = '$username'";
  return mysqli_query($con,$q);
}


   function getUserInfo($username){
 GLOBAL $con;
  $q = "SELECT * FROM ".TBL_USERS." WHERE username = '$username'";
  $result = mysqli_query($con,$q);
  /* Error occurred, return given name by default */
  if(!$result || (mysqli_num_rows($result) < 1)){
     return NULL;
  }
  /* Return result array */
  $dbarray = mysqli_fetch_array($result);
  return $dbarray;
  }


 function getNumMembers(){
 GLOBAL $con;
  if($this->num_members < 0){
     $q = "SELECT * FROM ".TBL_USERS;
     $result = mysqli_query($con,$q);
     $this->num_members = mysqli_num_rows($result);
   }
  return $this->num_members;
  }

    /**
   * calcNumActiveUsers - Finds out how many active users
   * are viewing site and sets class variable accordingly.
   */
   function calcNumActiveUsers(){
 GLOBAL $con;
  /* Calculate number of users at site */
  $result = mysqli_query($con,"SELECT * FROM ".TBL_ACTIVE_USERS);
  $this->num_active_users = mysqli_num_rows($result);
     }


  function calcNumActiveGuests(){  
  GLOBAL $con;
  /* Calculate number of guests at site */
  $q = "SELECT * FROM ".TBL_ACTIVE_GUESTS;
  $result = mysqli_query($con,$q);
  $this->num_active_guests = mysqli_num_rows($result);
   }


   function addActiveUser($username, $time){
 GLOBAL $con;
  $q = "UPDATE ".TBL_USERS." SET timestamp = '$time' WHERE username = '$username'";
  mysqli_query($con,$q);

  if(!TRACK_VISITORS) return;
  $q = "REPLACE INTO ".TBL_ACTIVE_USERS." VALUES ('$username', '$time')";
  mysqli_query($con,$q);
  $this->calcNumActiveUsers();
   }

 function addActiveGuest($ip, $time){
 GLOBAL $con;
  if(!TRACK_VISITORS) return;
  $q = "REPLACE INTO ".TBL_ACTIVE_GUESTS." VALUES ('$ip', '$time')";
  mysqli_query($con,$q);
  $this->calcNumActiveGuests();
   }

 function removeActiveUser($username){
 GLOBAL $con;
  if(!TRACK_VISITORS) return;
  $q = "DELETE FROM ".TBL_ACTIVE_USERS." WHERE username = '$username'";
  mysqli_query($con,$q);
  $this->calcNumActiveUsers();
   }

/* removeActiveGuest */
function removeActiveGuest($ip){
GLOBAL $con;
  if(!TRACK_VISITORS) return;
  $q = "DELETE FROM ".TBL_ACTIVE_GUESTS." WHERE ip = '$ip'";
  mysqli_query($con,$q);
  $this->calcNumActiveGuests();
}

/* removeInactiveUsers */
function removeInactiveUsers(){
GLOBAL $con;
  if(!TRACK_VISITORS) return;
  $timeout = time()-USER_TIMEOUT*60;
  $q = "DELETE FROM ".TBL_ACTIVE_USERS." WHERE timestamp < $timeout";
  mysqli_query($con,$q);
  $this->calcNumActiveUsers();
}

/* removeInactiveGuests */
function removeInactiveGuests(){
 GLOBAL $con;
  if(!TRACK_VISITORS) return;
  $timeout = time()-GUEST_TIMEOUT*60;
  $q = "DELETE FROM ".TBL_ACTIVE_GUESTS." WHERE timestamp < $timeout";
  mysqli_query($con,$q);
  $this->calcNumActiveGuests();
}


function query($query){
GLOBAL $con;
  return mysqli_query($con,$query);
}
};


  $database = new MySQLDB;

  ?>

推荐答案

错误相当模糊,但是具体.声明连接对象mysql_result是预期的,但它接收的是null.

The error is fairly vague, but specific. It's stating that a connection object, mysql_result, is expected but it's receiving null instead.

这样做的原因是您试图在每个函数内部使用连接:

The reason for this is how you're attempting to use the connection inside each function:

global $con;
mysqli_query($con, $q);

global关键字引入全局变量到您正在使用它的函数中,但是$con不是此类中的全局变量(而且,您不会需要在类内部使用global).您正在寻找的是$this关键字.

The global keyword will bring in global variables to the function you're using it in, but $con isn't a global variable in this class (and, you don't need to use global inside classes). What you're looking for instead is the $this keyword.

在类构造器MySQLDB()中,定义$con变量;您应该改为使用$this->connection,因为您已经定义了一个名为$connection的全局变量:

In your class constructor MySQLDB() you define the $con variable; you should instead change this to use $this->connection as you've already defined a global variable named $connection:

$this->connection = mysqli_connect(DB_SERVER, DB_USER, DB_PASS,DB_NAME);

然后,在每个函数中,不要使用类似以下的内容:

Then, in each function, instead of using something like:

global $con;
mysqli_query($con,$q);

您可以使用:

mysqli_query($this->connection, $q);

这篇关于警告:mysqli_num_rows()期望参数1为mysqli_result,在中给出null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆