Answers for "add days and hours minutes and seconds php"

PHP
1

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";
}
Posted by: Guest on June-18-2020
2

Add days to date in PHP

$date = new DateTime('2020-11-24');
$date->add(new DateInterval("P9D"));

echo $date->format('Y-m-d');
Posted by: Guest on January-14-2021

Code answers related to "add days and hours minutes and seconds php"

Browse Popular Code Answers by Language