Skip to content

Instantly share code, notes, and snippets.

@imbyc
Last active November 25, 2020 02:54
Show Gist options
  • Save imbyc/687c04431f78c628fe6cb76abb516b71 to your computer and use it in GitHub Desktop.
Save imbyc/687c04431f78c628fe6cb76abb516b71 to your computer and use it in GitHub Desktop.
[PHP 秒数时长转时分秒显示] 如: 200 秒转成 03:20
<?php
/**
* 秒数时长转时分秒显示
* @param float $seconds
*
* @return string
*/
function secondsToHms($seconds)
{
$sign = (($seconds < 0) ? '-' : '');
$seconds = round(abs($seconds));
$H = (int)floor($seconds / 3600);
$M = (int)floor(($seconds - (3600 * $H)) / 60);
$S = (int)round($seconds - (3600 * $H) - (60 * $M));
return $sign . ($H ? $H . ':' : '') . ($H ? str_pad($M, 2, '0', STR_PAD_LEFT) : intval($M)) . ':' . str_pad($S, 2, '0', STR_PAD_LEFT);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment