I use this php function time(HⓂs) and notice it is off from my Sparc 2.6 machine by a little over 30 minutes. How do I adjust it to make it the same as my UNIX Sparc2.6 time? I'm using PHP4.0.
Thanks, Cindy
Hi, if you want to adjust the time from php you can use:
$newtime = time() + (60 30); // current time 30min
echo date("HⓂs", $newtime);