Peace
Peace

Reputation: 296

wrong current time - php time function

I have a problem with the time function in PHP.

It provides a different time.

For example, the current time in my PC is 10:00AM, it appears 5 hours late..

any thoughts?

Thanks in advance

Upvotes: 2

Views: 1201

Answers (2)

amitchhajer
amitchhajer

Reputation: 12830

can change the timezone in php ini file also e.g.

[Date]
; Defines the default timezone used by the date functions
date.timezone = "America/Los_Angeles"

Upvotes: 1

Jon
Jon

Reputation: 437376

The server system is configured with the wrong timezone for your location. Fix that with date_default_timezone_set.

Upvotes: 6

Related Questions