Ive got a pretty simple script that runs at 5 past midnight. It grabs the local
date/time and processes data based on the date/time. The problem is the date/time
returned by the date() function is incorrect.
here is a sample script (not actual script running on server):
test.php
<?
$t = time();
echo "\n<br>timestamp = $t";
echo "\n<br>time = " . date("r", $t);
?>
if i run test.php via the web it produces the following output, which is correct:
timestamp = 1061443716
time = Thu, 21 Aug 2003 15:28:36 +1000
if i run test.php via the command line it produces the following output, which is off
by 10 hours:
<br>timestamp = 1061443722
<br>time = Thu, 21 Aug 2003 05:28:42 +0000
has this happened to anyone before? what could cause the huge difference in time?
Im running PHP Version 4.3.2 on NetBSD 1.6
----------
Regards
Cody Phanekham
Email: [EMAIL PROTECTED]
Ext: 2183
Phone: 02 9353 2183
*************************************************************************************
This e-mail, including any attachments to it, may contain confidential and/or personal
information.
If you have received this e-mail in error, you must not copy, distribute, or disclose
it, use or take any action
based on the information contained within it.
Please notify the sender immediately by return e-mail of the error and then delete the
original e-mail.
The information contained within this e-mail may be solely the opinion of the sender
and may not necessarily
reflect the position, beliefs or opinions of Salmat on any issue.
This email has been swept for the presence of computer viruses known to Salmat's
anti-virus systems.
For more information, visit our website at www.salmat.com.au.
*************************************************************************************
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php