捕获 fwrite 返回值到变量

发布于 2024-12-12 06:36:22 字数 283 浏览 0 评论 0原文

“fwrite() 返回写入的字节数,错误时返回 FALSE。”

返回值可以捕获在变量中吗?

可以将返回值相加得出总数吗?

我如何捕获返回的值,以便稍后使用它,例如将其插入数据库。

这是我的代码

while($row = mysql_fetch_array($r,MYSQL_NUM))
  {
   $data = implode("\t",$row) . "\n";
   echo fwrite($file,$data);
  }

"fwrite() returns the number of bytes written, or FALSE on error. "

can the return value be captured in variable?

can the return values be added up for a total?

how can i capture the value of the return so i can use it later, like insert it into a data base.

this is the code i have

while($row = mysql_fetch_array($r,MYSQL_NUM))
  {
   $data = implode("\t",$row) . "\n";
   echo fwrite($file,$data);
  }

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

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

发布评论

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

评论(2

慈悲佛祖 2024-12-19 06:36:22

可以在变量中捕获返回值吗?

是的。

$variable = fwrite($file, $data);

返回值可以相加得到总计吗?

是的,保留一个运行总计并在每次迭代中添加它。

$total = 0;

foreach(...) {
    $total += fwrite($file, $data);
}

如何捕获返回值以便稍后使用它,例如将其插入数据库?

将其存储在变量中,然后在准备好时返回它。

return $total;

Can the return value be captured in variable?

Yes.

$variable = fwrite($file, $data);

Can the return values be added up for a total?

Yes, keep a running total and add to it in each iteration.

$total = 0;

foreach(...) {
    $total += fwrite($file, $data);
}

How can I capture the value of the return so I can use it later, like insert it into a database?

Store it in a variable, then return it when ready to.

return $total;
星軌x 2024-12-19 06:36:22

除非我误解了,否则应该这样做:

$filesizes = array();
while($row = mysql_fetch_array($r,MYSQL_NUM)) {
  $data = implode("\t",$row) . "\n";
  $filesizes[] = fwrite($file,$data);
}

$total = array_sum($filesizes);

Unless I've misunderstood this should do it:

$filesizes = array();
while($row = mysql_fetch_array($r,MYSQL_NUM)) {
  $data = implode("\t",$row) . "\n";
  $filesizes[] = fwrite($file,$data);
}

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