How to format Time Zone Abbreviation in javascript date object
while taking new Date()
object in javascript, it produce output as
Thu Oct 30 2014 00:00:00 GMT+0530 (India Standard Time)
in windows and
Thu Oct 30 2014 00:00:00 GMT+0530 (IST)
in Linux...
What i need is the output in (IST), so I can convert the date using strtotime()
You actually don't need this conversion. Just using the
(India Standard Time)
suffix, or no suffix at all, will work just fine. For example:Returns
Demo.
So my answer to your question is that I don't think it's possible to get the official timezone abbreviation, but my solution to your problem is to simply use the format you already have (or if the suffix is causing problems when it's in another language, simply omit the suffix).
Alternatively, you can convert the timezone to UTC first, and then feed that to the PHP: