gpt4 book ai didi

php - mysqli::get_result 有什么问题?

转载 作者:行者123 更新时间:2023-11-30 22:25:06 25 4
gpt4 key购买 nike

<分区>

我有以下代码:

$postId = $_GET['postId'];
$mysqli = new mysqli('localhost', 'username', 'database', 'name_db');
mysqli_report(MYSQLI_REPORT_ALL);

$stmt = $mysqli->stmt_init();
$stmt->prepare("
SELECT *
FROM posts
WHERE postId = ?
");
$stmt->bind_param('i', $postId);
$stmt->execute();
$result = $stmt->get_result();//Call to undefined method
$info = $result->fetch_array(MYSQLI_ASSOC);
echo json_encode($info);

我得到上面标记的一些错误。我做错了什么?

编辑:

将 fecth_array() 更改为 fetch_array()

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com