메뉴얼:$wgLocaltimezone
Jump to navigation
Jump to search
Timezone settings: $wgLocaltimezone | |
---|---|
Fake out the timezone that the server thinks it's in. |
|
이 변수가 소개된 버전: | 1.4.0 (r773) |
이 변수가 사라진 버전: | 계속해서 쓰이고 있음 |
허용값: | (문자열) 또는 null |
기본값: | null |
기타 설정: 알파벳 순 | 기능별 순 |
설명
Fake out the timezone that the server thinks it's in. This will be used for date display and not for what's stored in the database. Setting the variable to null
will set the displayed time zone to the server's default.
- 예시들 (참고로 한국은 'Asia/Seoul')
$wgLocaltimezone = 'GMT';
$wgLocaltimezone = 'EST';
$wgLocaltimezone = 'EST8'; ## <span lang="en" dir="ltr" class="mw-content-ltr">-6 hrs instead of -5</span>
$wgLocaltimezone = 'PST8PDT';
$wgLocaltimezone = 'Asia/Bangalore';
$wgLocaltimezone = 'America/New_York';
$wgLocaltimezone = 'CET';
Please refer to Manual:Timezone for more information.