i am new to php. i want to write a function where i need user to input date in any date format including DST,into GMT format and again later back into the original entered format.please any body help me.
feedback
|
|
Although the gmdate functions are available. If you are using PHP 5.2 or greater, then consider using the DateTime object. Here's code to switch to GMT
and back to the default timezone...
Using the DateTime object lets your create a datetime, just like the procedural functions, except that you keep a reference to an instance. e.g.
There's a whole lot of functions you can use, that are much more readable that the procedural functions. Explicit example of converting from a timezone to GMT
Using your Asia/Kolkata to America/New_York
| |||||||||||
feedback
|
|
Use the gmdate function to convert to GMT time. For example
| |||
|
feedback
|