了解如何从计数器文本中计算总数
嘿,我这里有一个计数器文本,我需要知道如何计算总数,这是我的信息
$filename = "data.txt"; $handle = fopen($filename, "r"); $contents = fread($handle, 文件大小($filename)); $expode = 爆炸("\n",$contents);
/** 输出 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 */ 我需要通过爆炸“\n”来计算总数,所以我将输出 12288 需要了解如何做到这一点我已经完成了这个
foreach ($expode as $v) { $总计 = $总计 + $v;
echo $total;
} 我没有得到好的结果
hey i have a counter text here and i need to know how to calculate the total this is my information
$filename = "data.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
$expode = explode("\n",$contents);
/**
output
1024
1024
1024
1024
1024
1024
1024
1024
1024
1024
1024
1024
1024
*/
I i need to calculate the total by exploding "\n" so i will output 12288 need to understand how to do this i have done this
foreach ($expode as $v)
{
$total = $total + $v;
echo $total;
}
i did not get good results with this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)