Answers for "timestam after 24 hours php"

PHP
0

24 hours date format php

$test = 'Fri, 15 Jan 2016 15:14:10 +0800';
$t = date('Y-m-d H:i:s',strtotime($test));
echo $t;
#tamilarasan nallairusun
Posted by: Guest on October-11-2021
0

php add 1 day hours to unix timestamp

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

Browse Popular Code Answers by Language