2

我的表中有一个总秒值,但我想得到一个时间格式,例如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'];
4

3 回答 3

6

使用gmdate函数,可以在http://php.net/manual/en/function.date.php查看格式代码

echo gmdate("H:i:s", $seconds);

PS。你的方法已经奏效了。226 秒就是 3 分 46 秒。

于 2013-01-07T03:47:09.283 回答
1

你可以使用这个..这个代码就像 youtube time

$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; //
于 2014-06-18T02:47:26.143 回答
0

Supericy 的答案很好,但只能工作 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);

顺便说一句,您的计算很好。但我选择这种方式。

于 2018-08-21T01:18:52.710 回答