"함수 now (iso8601)"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 3개는 보이지 않습니다)
3번째 줄: 3번째 줄:
==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
<source lang='PHP'>
<syntaxhighlight lang='PHP'>
echo date('c');
echo date('c');
// 2014-09-07T07:58:49+0900
// 2014-09-07T07:58:49+0900
9번째 줄: 9번째 줄:
echo date(DateTime::ISO8601);
echo date(DateTime::ISO8601);
// 2014-09-07T07:58:49+0900
// 2014-09-07T07:58:49+0900
</source>
</syntaxhighlight>
 
==Python==
[[category: Python]]
<syntaxhighlight lang='Python'>
import datetime
t = datetime.datetime.now()
print( t.isoformat() )
# 2014-08-22T21:46:44.359053
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[함수 now (datetime)]]
*[[함수 now (datetime)]]
*[[함수 now (unixtime)]]
*[[함수 now (unixtime)]]
*[[ISO 8601]]

2020년 11월 2일 (월) 02:33 기준 최신판


1 PHP[ | ]

echo date('c');
// 2014-09-07T07:58:49+0900

echo date(DateTime::ISO8601);
// 2014-09-07T07:58:49+0900

2 Python[ | ]

import datetime
t = datetime.datetime.now()
print( t.isoformat() )
# 2014-08-22T21:46:44.359053

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}