0

I am working in Codeigniter project and I want to add time in minutes in datetime string. I have a datetime string,

2020-09-25 12:20:00

and I want to add time

10 minutes
Vickel
  • 7,879
  • 6
  • 35
  • 56

1 Answers1

0
$newtimestamp = strtotime('2020-09-25 12:20:00 + 10 minute');
echo date('Y-m-d H:i:s', $newtimestamp);

Output:-

2020-09-25 12:30:00

KUMAR
  • 1,993
  • 2
  • 9
  • 26