0

I want to know, how can i get the current timezone in php. I am using Wordpres Cms and want to filter out the product listing based on the timezone.

Let me know if there is any other alternative as well.

Thanks

jmargolisvt
  • 5,722
  • 4
  • 29
  • 46
Akshay Prabhakar
  • 430
  • 4
  • 13

1 Answers1

1

Use the moment.js library. It's great when it comes to knowing the timezone

var tz = moment.tz.guess();

You will get a good name for the timezone, like Europe/Berlin for CET.

And all browsers support the API on which moment.js relies.

Unamata Sanatarai
  • 6,475
  • 3
  • 29
  • 51