我的表中有一个总秒值,但我希望获得像hh:mm:ss
这样的时间格式,
目前我有:seconds - 226
,我知道应该按时间格式4分26秒,但我已经尝试过这段代码:
$seconds = 226;
$hours = floor($seconds / 3600);
$mins = floor(($seconds - ($hours*3600)) / 60);
$secs = floor(($seconds - ($hours*3600)) - ($mins*60));
并输出3:46
这个公式可能有问题吗?
编辑:我从返回视频时长的YouTube脚本中获取此值:
$ytvidid = $url;
$ytdataurl = "http://gdata.youtube.com/feeds/api/videos/". $ytvidid;
$feedURL = $ytdataurl;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $feedURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// get the result of http query
$output = curl_exec($ch);
curl_close($ch);
// feed the curl output to simplexml_load_string
$sxml = simplexml_load_string($output) or die("XML string not loading");
//$sxml = simplexml_load_file($feedURL);
$media = $sxml->children('http://search.yahoo.com/mrss/');
// get <yt:duration> node for video length
$yt = $media->children('http://gdata.youtube.com/schemas/2007');
$attrs = $yt->duration->attributes();
echo $attrs['seconds'];
答案 0 :(得分:6)
使用gmdate function,您可以在http://php.net/manual/en/function.date.php
查看格式代码echo gmdate("H:i:s", $seconds);
PS。你的方法已经有效了。 226秒将是3分46秒。
答案 1 :(得分:1)
你可以使用这个..这个代码就像youtube时间
$total_secs = '15454';
//time settings
$hours = floor($total_secs / 3600);
$mins = floor(($total_secs - ($hours*3600)) / 60);
$secs = floor($total_secs % 60);
//if hours zero, give for nothing like that (45:05)
if ($hours<1) { $hours = ''; } else { $hours = $hours.':'; }
if ($mins<10) { $mins = '0'.$mins.':'; } else { $mins = $mins.':'; }
if ($secs<10) { $secs = '0'.$secs; } else { $secs = $secs; }
echo $output = $hours.$mins.$secs; //
答案 2 :(得分:0)
答案很简单,但只能使用24小时,如果您需要每天数小时,那么我会得到类似的信息:
$diffInSeconds = 64;
$h = floor($diffInSeconds / 3600);
$m = floor(($diffInSeconds - ($h * 3600)) / 60);
$s = floor(($diffInSeconds - (($h * 3600) + $m * 60)));
echo sprintf('%02d', $h) . ":" . sprintf('%02d', $m). ":" . sprintf('%02d', $s);
顺便说一句,您的计算很好。但是我选择这种方式。