웹인증용으로 기준시간이 필요할때 쓰세요.
도움이 되셨다면 춫천~~~ 해주세용.
;------------------------------------------------------------------------------
MsgBox % GetWebTime()
GetWebTime()
{
URLDownloadToFile, http://map.naver.com/common2/checkNds.nhn, % urlfile := "_url.txt"
FileRead, html, *T *P65001 %urlfile% ;UTF-8형식의 파일을 읽어올때 P65001 옵션 사용
FileDelete, % urlfile
if RegExMatch(html, "</script>\n\t(?<year>.*?)\. (?<month>.*?)\. (?<day>.*?) (?<ampm>.*?) (?<hour>.*?):(?<min>.*?):(?<sec>.*?)\n</body>", _)
{
_month := Format("{1:02d}", _month)
_day := Format("{1:02d}", _day)
_min := Format("{1:02d}", _min)
_sec := Format("{1:02d}", _sec)
_hour := _hour=12? 0:_hour
_hour += (_ampm="오후")? 12:0
_hour := Format("{1:02d}", _hour)
return _year _month _day _hour _min _sec
}
}
에고고 추천만 하고.. 걍 가네요 ㅋㅋ. 좋은 글 감사합니다.. 덕분에 이것저것 많이 배우네요 ^^ ㄳ해요