php while 循环中的减法

发布于 2024-10-04 14:10:12 字数 353 浏览 9 评论 0原文

我想我距离 PHP 新手还很远,但由于某种原因我无法让以下内容工作。我正在尝试使用 PHP while 循环从数字中减去一个值。

代码如下,但它似乎只是减去第一个值。

我显然已经启动了一个 mysql 查询,然后有以下代码:

 $scMins = 500;
 while($f=mysql_fetch_object($r)){

  $duration = $f->duration;

  $scRem = ($scMins - $duration);


 }


 return $scRem;

但它只是不工作。

任何帮助将不胜感激。

谢谢, 缺口

I'd like to think I'm far from a PHP novice, but for some reason I cannot get the following to work. I'm trying to subtract a value from a number using a PHP while loop.

The code is below, but it only seems to be subtracting the first value.

I've obviously initiated a mysql query, and then have the following code:

 $scMins = 500;
 while($f=mysql_fetch_object($r)){

  $duration = $f->duration;

  $scRem = ($scMins - $duration);


 }


 return $scRem;

but its just notn working.

Any help would be MUCH appreciated.

Thanks,
Nick

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

云淡风轻 2024-10-11 14:10:12

您总是从初始值 scMins 中减去

$scRem = 500;
while($f=mysql_fetch_object($r)){
  $duration = $f->duration;
  $scRem = ($scRem - $duration);
}

You always subtract from the initial value scMins

$scRem = 500;
while($f=mysql_fetch_object($r)){
  $duration = $f->duration;
  $scRem = ($scRem - $duration);
}
昔梦 2024-10-11 14:10:12

$r 是什么?

如果它没有返回任何内容,那么很可能意味着您的循环是错误的。我会检查您的查询是否确实返回了某些内容(或者是否错误),问题很可能就在那里。

What is $r?

If it returns nothing, then it most likely means that your loop is wrong. I'd check if your query actually returns something (or if it errors), the problem most likely lies there.

怪异←思 2024-10-11 14:10:12

在 while 循环中,变量 $scRem 在每次迭代时都会被覆盖。尝试一下,

$scRem += ($scMins - $duration);

但老实说,目前还不清楚您想要实现什么目标,所以这可能是错误的答案;-)

In your while-loop the variables $scRem gets overwritten at each iteration. Try

$scRem += ($scMins - $duration);

But honestly it's not very clear what you are trying to achive, so this may be the wrong answer ;-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文