PHP和Mysqli代码错误消息


PHP and Mysqli code error message

我有这段PHP代码,网站上的另一位用户对我很有帮助。它试图将数据库中的条目与用户在表单中提供的内容相匹配,并回显与这些规范相匹配的图片。

(我在前4行定义了我的数据库信息,但这个网站不想写出来)

// Errors
$error = array();
if (!isset($_POST['submit']))
    $error[] = "The form was not set.<br />";
// Here we check if each of the variable are set and have content
if (!isset($_POST['gender']) || strlen($_POST['gender']) == 0)
    $error[] = "You must fill the gender field.<br />";
if (!isset($_POST['hair']) || strlen($_POST['hair']) == 0)
    $error[] = "You must fill the hair field.<br />";
if (!isset($_POST['height']) || strlen($_POST['height']) == 0)
    $error[] = "You must fill the height field.<br />";
if (!isset($_POST['body']) || strlen($_POST['body']) == 0)
    $error[] = "You must fill the body field.<br />";
if (empty($error))
{
    $con = mysqli_connect($db_host, $db_user, $db_pass, $db_name);
    if ($con->connect_error)
        die('Connect Error (' . mysqli_connect_errno() . ') '. mysqli_connect_error());
    // Here we prepare your query and make sure it is alright
    $sql = "SELECT * FROM `table` WHERE gender=? AND hair=? AND height=? AND body=?";
    if (!$stmt = $con->prepare($sql))
        die('Query failed: (' . $con->errno . ') ' . $con->error);
    // Here we define the field types with 'ssss' which means string, string, string
    // and also set the fields values
    if (!$stmt->bind_param('ssss', $_POST['gender'], $_POST['hair'], $_POST['height'], $_POST['body']))
        die('Binding parameters failed: (' . $stmt->errno . ') ' . $stmt->error);
    // Now we finally execute the data to update it to the database
    // and if it fails we will know
    if (!$stmt->execute())
        die('Execute failed: (' . $stmt->errno . ') ' . $stmt->error);
    // Now we read the data
    while ($row = $stmt->fetch_object())
    {
        $pic = $row->picture;
        echo $row->picture, "'n";
    }
    $stmt->close();
    $con->close();
}
else
{
    echo "Following error occurred:<br />";
    foreach ($error as $value)
    {
        echo $value;
    }
}
?>

我在 48线上收到这个错误消息

Fatal error: Call to undefined method mysqli_stmt::fetch_object() in /home/content/...

这是哪行代码:

// Now we read the data
while ($row = $stmt->fetch_object())

不能直接从mysqli_stmt对象中获取结果。首先使用get_result获取mysqli_result对象,然后在该对象上使用fetch_object

$result = $stmt->get_result();
while ($row = $result->fetch_object())

请注意,只有当您安装了mysqlnd时,这才有效;如果不是,请参阅bind_resultfetch方法,以获得不太方便(但更兼容)的方法。