mysqli_num_rows()期望参数1是mysqli_result,object

时间:2011-04-23 03:39:15

标签: php mysqli

这是我第一次使用mysqli。它似乎是在mysqli_num_rows()中的括号之间寻找结果集的名称。然而,当我尝试$ stmt,$ conn,什么都没有时,我得到了同样的错误。令人沮丧!什么是$ WHAT在下面的最后一行?

或许我正在尝试错误的方法。我想做的就是检查结果是否已返回。我真的不需要行数。我是否应该使用错误消息执行else语句?这是最好的方法吗?有没有一种很好的方法来编写一个连接和接受查询及其参数的函数?我为mysql写了一个,但这是如此不同!我不期待重写几十个问题!

$conn = mysqli_connect($host, $user, $pwd, $db,$port=$port_nbr); 

if ($mysqli_connect_errno) {
    printf("Connect failed: %s\n",
    mysqli_connect_error());
    exit;
}
if($stmt=$conn->prepare("SELECT id, name, status, type FROM organization")) {
    $stmt->execute();
    $stmt->bind_result($org_id, $orgname, $orgstatus, $orgtype);    
    $num=mysqli_num_rows($WHAT);
}

3 个答案:

答案 0 :(得分:8)

当您只想要面向对象时,您正在组合面向过程和面向对象的方法。变化

$num=mysqli_num_rows($WHAT);

$num = $stmt->num_rows();

答案 1 :(得分:2)

mysqli_num_rows将查询结果作为参数 http://us.php.net/manual/en/mysqli-result.num-rows.php

你也可以在OOP风格中使用它作为$ result-> num_rows;

答案 2 :(得分:0)

此错误的原因是您可能将$stmt对象传递给mysqli_num_rows()

此外,我看到的是您在php中混合了两种使用mysql数据库的方法-面向对象方法过程方法。您必须选择其中之一,然后再执行以下操作-

过程方法(使用mysqli扩展名)

$con = mysqli_connect("localhost", "user", "pass", "test") or die("Connection Error: " . mysqli_error($conn));
$query = "SELECT id, name, status, type FROM organization"; 
$result = mysqli_query($con, $query) or die(mysqli_error($con));
$count = mysqli_num_rows($result);

// $count now stores the number of rows returned from that query

面向对象的方法(使用mysqli扩展名)

<?php
$host = "localhost";
$username = "user";
$password = "pass";
$dbname = "test";

// Create connection
$conn = new mysqli($host, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 

$sql = "SELECT id, name, status, type FROM organization";
$result = $conn->query($sql);
$count = $result->num_rows;
// $count now stores the number of rows returned
$conn->close();
?>

您可以在此处详细了解-https://www.w3schools.com/php/php_mysql_select.asp