PDO:参数编号无效:混合命名参数和位置参数

2022-08-31 00:46:32

我遇到过这个我以前从未见过的警告:

警告: PDOStatement::execute() [pdostatement.execute]: SQLSTATE[HY093]: 参数编号无效: 混合命名参数和位置参数...

参考以下PDO查询(为便于阅读,已简化功能):

$offset = 0;
$limit = 12;
function retrieve_search_posts($searchfield, $offset, $limit){


        $where = array();

        $words = preg_split('/[\s]+/',$searchfield);

        array_unshift($words, '');
        unset($words[0]);

        $where_string = implode(" OR ", array_fill(0,count($words), "`post_title` LIKE ?"));

        $query = "
                                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
                                WHERE $where_string
                                ORDER BY post_date
                                LIMIT :offset, :limit
                                DESC";
        $stmt = $dbh->prepare($query);

        foreach($words AS $index => $word){
            $stmt->bindValue($index, "%".$word."%", PDO::PARAM_STR);
        }
        $stmt->bindParam(':offset', $offset, PDO::PARAM_INT);
        $stmt->bindParam(':limit', $limit, PDO::PARAM_INT);
        $stmt->execute();

        $searcharray = $stmt->fetchAll(PDO::FETCH_ASSOC);

        return $searcharray;
    }

函数和 PDO 查询在没有偏移量和限制变量的情况下工作正常。那么,是什么导致了这个警告呢?

谢谢


答案 1

改变

LIMIT :offset, :limit

LIMIT ?, ?

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

自:

$stmt->bindValue($index+1, $offset, PDO::PARAM_INT);
$stmt->bindValue($index+2, $limit, PDO::PARAM_INT);

答案 2

在你的where_string你使用,这是一个位置参数,在你的限制和偏移量中,你使用的是一个命名参数,导致警告不要混合它们?:


推荐