php add 1 day hours to unix timestamp

Solutions on MaxInterview for php add 1 day hours to unix timestamp by the best coders in the world

showing results for - "php add 1 day hours to unix timestamp"
Melina
15 May 2017
1strtotime('+1 day', $timestamp);
2
Lisa
03 Apr 2020
1<?php 
2  
3echo strtotime("now"), "\n";
4echo strtotime('+1 day'); 
5  
6?>
7