时间:2021-07-01 10:21:17 帮助过:21人阅读
代码如下:
//连接数据库... 略
$total = 0; //总秒数
$sql = "select duration from test";
$rs = mysql_query($sql);
while($row = mysql_fetch_array($rs))
{
$arr=explode(":",$row[duration]);
$h = $arr[0]*60*60;
$m = $arr[1]*60;
$s = $arr[2];
$total = $h+$m+$s;
}
echo $total;
以上就介绍了进口奶粉质量排行榜 php 记录进行累加并显示总时长为秒的结果,包括了进口奶粉质量排行榜方面的内容,希望对PHP教程有兴趣的朋友有所帮助。