Link to home
Create AccountLog in
Avatar of Loganathan Natarajan
Loganathan NatarajanFlag for India

asked on

Is there PHP web service to display the IST date and time?

I need a php web service to display  the IST time. In my website the date is often changed, So I could not either convert them to my IST date and time or display the current date and time?
Avatar of cr4ck3rj4ck
cr4ck3rj4ck
Flag of United Kingdom of Great Britain and Northern Ireland image

Hi there,

Try this, hope it helps.

CJ
<?php
//Get GMT Date/Time and adds offset to IST
echo gmdate("F j, Y, g:i a", strtotime("+5 hours 30 minutes")); 
?>

Open in new window

Avatar of Loganathan Natarajan

ASKER

Thanks for the reply. I have already this code and displaying the IST time. My actual problem is the server GMT time gets varies every day. It is not reliable ... as i am using shared hosting.. very difficult to explain this problem to them... also they just reset and again the problem arise ... so i  don't want to depend on them ... that is why i want to access the web services....

any ideas?
i don't think this would help to me?

as i need to retrieve or get the date to display...
ASKER CERTIFIED SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
OK, i shall study on that.

Thanks