Last active
November 25, 2020 02:54
-
-
Save imbyc/687c04431f78c628fe6cb76abb516b71 to your computer and use it in GitHub Desktop.
[PHP 秒数时长转时分秒显示] 如: 200 秒转成 03:20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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