From:             dave at smartboy dot com
Operating system: Windows XP
PHP version:      5.1.4
PHP Bug Type:     Filesystem function related
Bug description:  PHP CLI filemtime() is wrong

Description:
------------
Using PHP CLI on Windows - filemtime() returns an incorrect value.

This problem does NOT occur with the Apache 2 SAPI.

Value reported is ahead by 9 hours (could be time zone related?  I am in
GMT+10:00 time zone)

Sample output:

$ php test_filemtime.php
2006-07-20 18:20:08

$ ls -l test_filemtime.php
-rw-r--r-- 1 Dave None 81 Jul 20 09:20 test_filemtime.php

(the above from Cygwin)

When running the exact same script inside Apache2 the correct time is
printed

2006-07-20 09:20:08


Reproduce code:
---------------
<?php

echo date('Y-m-d H:i:s', filemtime($_SERVER["SCRIPT_FILENAME"])) . "\n";

Expected result:
----------------
2006-07-20 09:20:08

Actual result:
--------------
2006-07-20 18:20:08

-- 
Edit bug report at http://bugs.php.net/?id=38154&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=38154&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=38154&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=38154&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=38154&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=38154&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=38154&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=38154&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=38154&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=38154&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=38154&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=38154&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=38154&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=38154&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=38154&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=38154&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=38154&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=38154&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=38154&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=38154&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=38154&r=mysqlcfg

Reply via email to