运行时革命简单但困难的问题

发布于 2024-09-11 09:23:40 字数 228 浏览 7 评论 0原文

任何人都可以将此 RunRev 函数转换为可用的 PHP 函数吗?我不是 PHP 方面的专家,所以我希望有人帮助我...

这是 RunRev 代码片段,-> http://paste-it.net/public/n8a6437/

我希望有人帮助我...

Can anyone convert this RunRev function to a usable PHP function? I'm not an expert when it comes to PHP so I hope somebody helps me...

Here is the RunRev code snippet, -> http://paste-it.net/public/n8a6437/

I hope somebody helps me...

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

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

发布评论

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

评论(1

司马昭之心 2024-09-18 09:23:40

在我看来,这将是:

function tankTotal($pData) {
   $tTotal = 0;
   $tMatch = true;
   while ($tMatch) {
     $tMatch = matchChunk($pData, "&cap&:&([0-9]*[0-9])&", $tCap, $tCap1)
     if ($tMatch) {
       for ($i = $tCap; $i <= $tCap1; $i++) {
         $tTotal .= $pData[$i];
         $pData[$i] = '';
       }
     }
   }
   return $tTotal;
}

取决于“添加它”意味着您可能想要做什么

         $tTotal += $pData[$i]; # Increase the number

而不是

         $tTotal .= $pData[$i]; # Concatenate the string

Looks to me like this would be:

function tankTotal($pData) {
   $tTotal = 0;
   $tMatch = true;
   while ($tMatch) {
     $tMatch = matchChunk($pData, "&cap&:&([0-9]*[0-9])&", $tCap, $tCap1)
     if ($tMatch) {
       for ($i = $tCap; $i <= $tCap1; $i++) {
         $tTotal .= $pData[$i];
         $pData[$i] = '';
       }
     }
   }
   return $tTotal;
}

Depending on, what "add it" means you might want to do

         $tTotal += $pData[$i]; # Increase the number

instead of

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