如何回显php增量的最后一个数字?[已关闭]

bsxbgnwa  于 2022-12-21  发布在  PHP
关注(0)|答案(1)|浏览(125)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
5小时前关门了。
Improve this question
$x=0;,我的数据库有560条记录,我写了这样的代码echo"++$x";,它返回了:

output:1 2 3 4 5 ....... 560

我想做的是只打印最后一个数字560我怎么能做到这一点?提前感谢。

vxf3dgd4

vxf3dgd41#

如果你在循环中使用这个变量,那么你只需要打印出循环中的$x,然后它就会取最后一个值
就像这样:

foreach($rows as $row){
   $x = $row;
}

echo $x; //this will print the last value of the $x assign in the loop

相关问题