gpt4 book ai didi

用于限制的 php bind_param

转载 作者:行者123 更新时间:2023-12-01 00:41:09 28 4
gpt4 key购买 nike

我在将值绑定(bind)到 php 中的 mysql 查询时遇到问题。

$this->conn->prepare("SELECT * FROM tablename LIMIT ? , ? ");
$pageStart = 11;
$pageEnd = 20 ;
$stmt->bind_param("ii" , $pageStart , $pageEnd );
$stmt->execute();

这将返回 20 行。有帮助吗?

最佳答案

这是正确的行为。

来自documentation :

...
[LIMIT {[offset,] row_count | row_count OFFSET offset}]
...

逗号后的数字是行数。

如果你想要 10 条记录,只需告诉:

SELECT * FROM tablename LIMIT 11 , 10;

关于用于限制的 php bind_param,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32242820/

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