GMT 시간대를 지역시간대로 변경하는 좋은 방법은?

aniseeker의 이미지

GMT 시간대를 지역시간대로 변경하는 좋은 방법이 무엇이 있을까요?

GMT 시간 + 9시간으로 계산하는 방법 외에 다른 방법은 없나요?

상황은 아래와 같습니다.

struct tm 구조체로 저장된 GMT 시각을 time_t 시간으로 바꾸려고 합니다.

mktime 등으로 time_t 형식으로 바꾼후 + 9시간을 적용하는 방법외에

무언가 다른 멋진 방법이 없지 않을까 합니다.

내력이 부족해서 그런지 찾아봐도 별다른 방법이 보이지 않는군요 :)

pynoos의 이미지

localtime 이 답이죠.

aniseeker의 이미지

네 맞습니다.
저도 그러고 싶지만, '변환해라!'라는 전제가 붙어버린 녀석이라 애물단지가 되어버렸네요. :)

어두운 밤에 움직이지 않는 꽃과 개와 물,
어두운 밤에 꽃과 짖는개와 물.

pynoos의 이미지

네.. time_t로 변환해서 더한뒤에 복원하는 수밖에는 없는 것 같습니다.

더할때는 timezone 이라는 값을 더하면 9 라는 숫자보다 깔끔합니다.

단, 주의 할 것은 timezone 이라는 함수는 localtime 과 같이 지역 시간대를 호출하면 초기화될 것입니다.

hjlee의 이미지

struct tm gmt_tm;
time_t t;
// ...

// man tzset - SystemV 비슷한 환경
t = mktime(&gmt_tm) - timezone;

// man localtime - BSD 4.3 이후
t = mktime(&gmt_tm) + gmt_tm.tm_gmtoff;

두번제 방법은 gmt_tm 을 DB 에서 읽는 경우라면 사용할 수 없겠죠.

여전히 나이스 하지는 않지만 "+9 시간" 보다는 ...

(제 리눅스에서는 두가지 다 동작하는데, 아주 오랜 *NIX 들에 서는 안될 수도 있겠습니다.)

----

#include <time.h>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
	struct tm local_tm, gmt_tm;

	time_t t = time(0);

	localtime_r(&t, &local_tm);
	
	gmtime_r(&t, &gmt_tm);

	cout << "time_t - " << t
		 << endl
		 << "local_tm.tm_hour - " << local_tm.tm_hour
		 << "\tmktime(&local_tm) - " << mktime(&local_tm)
		 << endl
		 << "gmt_tm.tm_hour - " << gmt_tm.tm_hour
		 << "\tmktime(&gmt_tm) - " << mktime(&gmt_tm)
		 << endl
		 << "mktime(&gmt_tm) + gmt_tm.tm_gmtoff - "
		 << mktime(&gmt_tm) + gmt_tm.tm_gmtoff
		 << endl
		 << "mktime(&gmt_tm) - timezone - "
		 << mktime(&gmt_tm) - timezone
		 << endl;

	gmt_tm.tm_sec += gmt_tm.tm_gmtoff;
	cout << "gmt_tm.tm_sec += gmt_tm.tm_gmtoff - " << mktime(&gmt_tm)
		 << endl;
}
pynoos의 이미지

pynoos wrote:
네.. time_t로 변환해서 더한뒤에 복원하는 수밖에는 없는 것 같습니다.

더할때는 timezone 이라는 값을 더하면 9 라는 숫자보다 깔끔합니다.

단, 주의 할 것은 timezone 이라는 함수는 localtime 과 같이 지역 시간대를 호출하면 초기화될 것입니다.

제가 timezone을 함수로 썼군요.. 함수가 아니라 전역 변수입니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.