gpt4 book ai didi

PHP 在 while 循环中计算两个值之间的差异

转载 作者:行者123 更新时间:2023-11-29 09:13:50 27 4
gpt4 key购买 nike

我用PHP从mysql结果输出一个XML文档,在一列中我有一堆值,但这些是累积值,即:1,3,6,8,12,45等...但我怎样才能只回显值之间的差异而不是值本身:

while($row = mysql_fetch_array($result)){
$strXML .= "<set name='".date("G:i:s", strtotime($row["tstamp"]))
. "' value='".$row['steam']."' color='AFD8F8' />";
}

有问题的列是“steam”,我该怎么做?

最佳答案

你想这样做吗?

$previous = 0;
while($row = mysql_fetch_array($result)){
$difference = $row['steam'] - $previous;
$strXML .= "<set name='".date("G:i:s", strtotime($row["tstamp"]))
. "' value='".$difference."' color='AFD8F8' />";
$previous = $row['steam'];
}

假设 $row['steam'] 是单个数字,而不是逗号分隔的列表。

关于PHP 在 while 循环中计算两个值之间的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4757988/

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