This article mainly introduces the method of PHP based on the duration of the second calculation, has a certain reference value, now share to everyone, the need for friends can refer to
/** * Calculate Duration * * @param int $second seconds * @return string $duration 5 days 10 hours 43 minutes 40 seconds * * function second2duration ($seconds) { $duration = "; $seconds = (int) $seconds; if ($seconds <= 0) { return $duration; } List ($day, $hour, $minute, $second) = Explode (', gmstrftime ('%j%H%M%s ', $seconds)); $day-= 1; if ($day > 0) { $duration. = (int) $day. ' Day '; } if ($hour > 0) { $duration. = (int) $hour. ' Hours '; } if ($minute > 0) { $duration. = (int) $minute. ' Minutes '; } if ($second > 0) { $duration. = (int) $second. ' Second '; } return $duration;}
The above is the whole content of this article, I hope that everyone's learning has helped, more relevant content please pay attention to topic.alibabacloud.com!