1

我有一个 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;
}

非常感谢

4

2 回答 2

4

确保 和 的类型$limit设置$offsetPDO::PARAM_INT

$limit = 20;
$offset = 0;

$stmt->bindParam(1, $limit,  PDO::PARAM_INT);
$stmt->bindParam(2, $offset, PDO::PARAM_INT);
于 2013-04-06T16:36:59.240 回答
0

连接到数据库后,插入以下代码行:

$conn->setAttribute( PDO::ATTR_EMULATE_PREPARES, false);

来源:https ://www.php.net/manual/en/pdo.setattribute.php

于 2021-12-02T22:31:39.337 回答