Change time zone

Status
Not open for further replies.

ratcateme

New Member
Messages
2
Reaction score
0
Points
0
I live in New Zealand, my website is aimed a people mostly in New Zealand so i want to change PHP's time zone to New Zealand i can use
date_default_timezone_set('Pacific/Auckland');
but i was wondering can i change the setting in the php.ini file
 

Synkc

Active Member
Messages
1,765
Reaction score
0
Points
36
You can set the default timezone with the PHP function you mentioned, and also by setting the config option "date.timezone" in any php.ini file you create; preferrably in the root web directory (public_html).
 
Last edited:

ratcateme

New Member
Messages
2
Reaction score
0
Points
0
How do i create a php.ini file do i just make a file called php.ini and place it in public_html and it will automatically take settings from that file

Scott.
 

Synkc

Active Member
Messages
1,765
Reaction score
0
Points
36
Yes, its as simple as that. :)
 
Last edited:
Status
Not open for further replies.
Top