date manipulation PHP

87 Views Asked by At

I need to create a date object that will be changed by parameters that i get. If I'll get -7 for days it will take me a week ago.

Here is my code. How do I format the date correctly?

 public function get_time_get($myear=0,$mmonth=0,$mday=0,$mhour=0,$mminute=0,$msecond=0){
    $year=date('y') +$myear;
    $month=date('m')+$mmonth;
    $day = date('d')+$mday;
    $hour= date('H'+$mhour); // there is a bug 
    $minute = date('i')+$mminute;
    $seconds= date('s')+$msecond;

    $date=mktime($year,$month,$day,$hour,$minute,$seconds);
    $t =date("Y-m-d H:i:s", $date);
    debug($date);

}

You can see that I try to get the time , but I get this:2021-11-30 17:08:29 That is not correct

1

There are 1 best solutions below

0
On BEST ANSWER

You wrote:

$hour= date('H'+$mhour);

But it should be:

$hour = date('H') + $mhour;

The $mhour should be outside of the date function.