Answers for "php add minutes to timestamp"

PHP
1

how to add hour minute seconds in php datetime

date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start)));
Posted by: Guest on August-13-2020
0

php add 1 day hours to unix timestamp

strtotime('+1 day', $timestamp);
Posted by: Guest on June-14-2021

Code answers related to "php add minutes to timestamp"

Browse Popular Code Answers by Language