下面是我的代码快照:
$fetchPictures = $PDO->prepare("SELECT *
FROM pictures
WHERE album = :albumId
ORDER BY id ASC
LIMIT :skip, :max");
$fetchPictures->bindValue(':albumId', $_GET['albumid'], PDO::PARAM_INT);
if(isset($_GET['skip'])) {
$fetchPictures->bindValue(':skip', trim($_GET['skip']), PDO::PARAM_INT);
} else {
$fetchPictures->bindValue(':skip', 0, PDO::PARAM_INT);
}
$fetchPictures->bindValue(':max', $max, PDO::PARAM_INT);
$fetchPictures->execute() or die(print_r($fetchPictures->errorInfo()));
$pictures = $fetchPictures->fetchAll(PDO::FETCH_ASSOC);
我明白
您的 SQL 语法有错误; check the manual that corresponds to 的 MySQL 服务器版本 在“15’,15’处使用正确的语法 1号线
似乎 PDO 在 SQL 代码的 LIMIT 部分中为我的变量添加了单引号。我查了一下,我发现了这个错误,我认为是相关的: Http://bugs.php.net/bug.php?id=44639
我看到的是这个吗? 这个 bug 从2008年4月就打开了! 这期间我们该做什么?
在发送 sql 语句之前,我需要构建一些分页,并且需要确保数据是干净的、 sql 注入安全的。