The example in this article describes how PHP custom functions implement the format of seconds. Share to everyone for your reference, specific as follows:
function Vtime ($time) {
$output = ';
foreach (Array (86400 => ' Day ', 3600 => ' hour ', => ' min ', 1 => ' sec ') as $key => $value) {
if ($time >= $k EY) $output. = Floor ($time/$key). $value;
$time%= $key;
}
if ($output = = ") {
$output =0;
}
return $output;
}
$now =time ();
$oldtime =86465;
echo Vtime ($now);//output: 17,058 days 4 hours 8 minutes 55 sec
Echo Vtime ($oldtime);/output: 1 days 1 minutes 5 seconds
For more information about PHP interested readers can view the site topics: "PHP date and Time usage summary", "PHP Mathematical Calculation Skills Summary", "PHP Array" operation Skills Encyclopedia, "PHP Basic Grammar Primer", "PHP Operations and Operator Usage Summary", " Introduction to PHP object-oriented programming program, "PHP Network Programming Skills Summary", "PHP string (String) Usage Summary", "Php+mysql database Operation Tutorial" and "PHP common database Operation Skills Summary"
I hope this article will help you with the PHP program design.