함수 now (iso8601)

Jmnote (토론 | 기여)님의 2014년 9월 6일 (토) 22:54 판


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 같이 보기


4 같이 보기

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