gpt4 book ai didi

PHP 是连接而不是添加

转载 作者:行者123 更新时间:2023-12-02 22:17:55 25 4
gpt4 key购买 nike

我遇到这个问题,我的 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;

时它工作正常

$offset == 0

我得到了预期的结果 1。但是当

$offset == 1

它给了我 101。基本上它是将 10 和 1 连接起来给我 101。我尝试了以下方法

$from = (int)($offset*$searchLimit)+1
$from = ((int)($offset)*$searchLimit)+1
$from = (((int)($offset)*$searchLimit)+1)

我试过了

$offset = (int)$_POST['offset'];

但是他们都给出了相同的结果。

最佳答案

您在 searchLimit 之前缺少一个 $。因此,它被视为一个字符串。这会导致意外行为。

关于PHP 是连接而不是添加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14178496/

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