jwk811 Posted November 25, 2006 Share Posted November 25, 2006 i am using the date function but the time is two hours before mine so its obviously not the right time zone.. how can i make it find the right time zone? thanks for the help! Link to comment https://forums.phpfreaks.com/topic/28409-local-date/ Share on other sites More sharing options...
The Little Guy Posted November 25, 2006 Share Posted November 25, 2006 Do you want to post your code? Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-129961 Share on other sites More sharing options...
jwk811 Posted November 25, 2006 Author Share Posted November 25, 2006 the date function like this[code]<?php echo date("g:i:s"); ?>[/code]i need it to come up in my time zonethanks~~ Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-129963 Share on other sites More sharing options...
The Little Guy Posted November 25, 2006 Share Posted November 25, 2006 [code]<?php$hour = date(g) - 2;echo date($hour.":i:s"); ?>[/code] Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-129964 Share on other sites More sharing options...
heckenschutze Posted November 25, 2006 Share Posted November 25, 2006 Something like:[code]$MyTime = date("g i", time() + 7200);[/code]Of course, you'll have to change it depending on the date format used :) Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-129966 Share on other sites More sharing options...
heckenschutze Posted November 25, 2006 Share Posted November 25, 2006 @The Little Guyg is not a constant, therefore [color=blue]date(g[/color]) will fail, provided PHP is set to strict warnings / errors.Should be [color=blue]date('g')[/color] Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-129967 Share on other sites More sharing options...
marcus Posted November 25, 2006 Share Posted November 25, 2006 Yeah, you'll have to change by seconds, not by just 2. Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-129968 Share on other sites More sharing options...
The Little Guy Posted November 25, 2006 Share Posted November 25, 2006 sorry I forgot the quotes, otherwise it will work. Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-129970 Share on other sites More sharing options...
jwk811 Posted November 25, 2006 Author Share Posted November 25, 2006 thanks! the one heckenschutze showed worked Link to comment https://forums.phpfreaks.com/topic/28409-local-date/#findComment-130251 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.