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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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