gpt4 book ai didi

php - PDO bindParam 不允许语句返回结果

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

我有一个 pdo 语句来选择行并将它们返回到一个数组中。我使用分页每页显示 12 个结果。如果我直接输入 LIMIT 12, 12 而不是 LIMIT ?, ? 语句会正常工作。

我对这两个变量的 bindParam 做错了什么?

两个变量都包含正确的数据。

这是我正在使用的函数:

// Retrieve active posts
function retrieve_active_posts(){
//test the connection
try{
//connect to the database
$dbh = new PDO("mysql:host=db2940.oneandone.co.uk;dbname=db348699391","xxx", "xxx");
//if there is an error catch it here
} catch( PDOException $e ) {
//display the error
echo $e->getMessage();

}

// Get all the posts
$stmt = $dbh->prepare(" SELECT p.post_id, post_year, post_desc, post_title, post_date, img_file_name, p.cat_id
FROM mjbox_posts p
JOIN mjbox_images i
ON i.post_id = p.post_id
AND i.cat_id = p.cat_id
AND i.img_is_thumb = 1
AND post_active = 1
ORDER BY post_date
DESC
LIMIT ?,?");
$stmt->bindParam(1, $limit);
$stmt->bindParam(2, $offset);
$stmt->execute();


while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {

$resultarray[] = $row;
}

return $resultarray;
}

非常感谢

最佳答案

确保 $limit$offset 的类型设置为 PDO::PARAM_INT:

$limit = 20;
$offset = 0;

$stmt->bindParam(1, $limit, PDO::PARAM_INT);
$stmt->bindParam(2, $offset, PDO::PARAM_INT);

关于php - PDO bindParam 不允许语句返回结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15853266/

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