我遇到了这个问题,我的 PHP 代码是连接而不是添加
$offset=$_POST['offset']; //Get the offset
$searchLimit = 10;
$searchCount = count(sql) //For the purpose of this question, it returns the result count
现在我想计算分页的“来自”显示,所以我这样做了
$from = ($offset*$searchLimit)+1;
它工作正常时
$偏移量 == 0
我得到了预期的结果,即 1。但是当
$偏移量 == 1
它给了我 101。基本上它是连接 10 和 1 给我 101。我尝试了以下
$from = (int)($offset*$searchLimit)+1
$from = ((int)($offset)*$searchLimit)+1
$from = (((int)($offset)*$searchLimit)+1)
我什至试过
$offset = (int)$_POST['offset'];
但他们都给出了相同的结果。