richardk Posted March 18, 2009 Share Posted March 18, 2009 Non programmer trying!?!?! I am trying to add a time offset (+1hr) to this script; can anybody help. The server that hosts this page is in another time zone, but I need for it to display local time. I'm not sure if this script can be modified or if in need another all together. <?php $filename = 'weather1.txt'; if (file_exists($filename)) { echo "Last Updated: " . date ("F d Y H:i:s.", filemtime($filename)); } ?> I am taking a time stamp off the file being uploaded so people looking at the web page can see if the information they have been FTP'd has been updated as it should be. Link to comment https://forums.phpfreaks.com/topic/149905-solved-time-offsets/ Share on other sites More sharing options...
samshel Posted March 18, 2009 Share Posted March 18, 2009 <?php $filename = 'weather1.txt'; if (file_exists($filename)) { echo "Last Updated: " . date ("F d Y H:i:s.", filemtime($filename) + 60*60); } ?> i m not sure though if adding 1 hour will solve your problem, it may cause issues when day light savings come into effect. Link to comment https://forums.phpfreaks.com/topic/149905-solved-time-offsets/#findComment-787271 Share on other sites More sharing options...
ngreenwood6 Posted March 18, 2009 Share Posted March 18, 2009 Check into mktime http://www.php.net/mktime. if you need an example let me know. Link to comment https://forums.phpfreaks.com/topic/149905-solved-time-offsets/#findComment-787276 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.