php time to hours and minutes code example

Example 1: how to add hour minute seconds in php datetime

date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start)));

Example 2: seconds to days hours minutes seconds php

function seconds2human($ss) {
$s = $ss%60;
$m = floor(($ss%3600)/60);
$h = floor(($ss%86400)/3600);
$d = floor(($ss%2592000)/86400);
$M = floor($ss/2592000);

return "$M months, $d days, $h hours, $m minutes, $s seconds";
}

Example 3: php convert minutes to hours and minutes

$hours = floor($final_time_saving / 60);
$minutes = $final_time_saving % 60;

Tags:

Php Example