ClassicASP [function] 날짜 표현 함수
페이지 정보
본문
<%
'사용방법
response.write changeDateType("2012-11-16 오후 12:09:48", 6) &"<br>"
%>
2012년 11월 16일 12:9:48
' 날짜 표현
function changeDateType(str,sel)
dim temp, Y, M, D
Y = Year(str)
M = Month(str)
D = Day(str)
if Len(M) = "1" then M = "0"&M
if Len(D) = "1" then D = "0"&D
select case sel
case 1 :temp = Y&"."&M&"."&D
case 2 :temp = Y&"/"&M&"/"&D
case 3 :temp = Year(str)&"년 "&Month(str)&"월 "&Day(str)&" 일"
case 4 :temp = Y&"."&M&"."&D&" "&Hour(str)&":"&Minute(str)&":"&second(str)
case 5 :temp = Y&"-"&M&"-"&D
case 6 :temp = Year(str)&"년 "&Month(str)&"월 "&Day(str)&"일 "&Hour(str)&":"&Minute(str)&":"&second(str)
case 7 :temp = M&"/"&D
end select
changeDateType = temp
end function
'사용방법
response.write changeDateType("2012-11-16 오후 12:09:48", 6) &"<br>"
%>
2012년 11월 16일 12:9:48
댓글목록
등록된 댓글이 없습니다.