php add 1day to unix timestamp

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

showing results for - "php add 1day to unix timestamp"
Antonella
23 Sep 2016
1strtotime('+1 day', $timestamp);
2
Morgane
31 Apr 2016
1<?php 
2  
3echo strtotime("now"), "\n";
4echo strtotime('+1 day'); 
5  
6?>
7