捕获 fwrite 返回值到变量
“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
是的,保留一个运行总计并在每次迭代中添加它。
将其存储在变量中,然后在准备好时返回它。
Yes.
Yes, keep a running total and add to it in each iteration.
Store it in a variable, then return it when ready to.
除非我误解了,否则应该这样做:
Unless I've misunderstood this should do it: