如何处理时间格式

直接用OW.formatDateTime(时间,格式)函数进行处理
格式有以下几种:
0: 返回日期和时间 (2009-08-10 22:05:06)
1: 返回长日期格式日期 (2009年08月10日)
2: 返回短日期格式日期 (2009-08-10)
3: 返回时间格式显示时间 (下午 00:00:00)
4: 返回24小时格式 (00:00:00)
5: 返回年 (2010)
6: 返回月 (08)
7: 返回日 (10)
8: 返回年月日 (20090810)
9: 返回年月日时分秒 (20090810220506)
10: 时 (22)
11: 分 (05)
12: 秒 (06)

如:

<%=ow.formatdatetime("2014/6/28 0:54:21",0)%> 输出 2014-06-28 00:54:21

比如内容列表页把时间处理成2009-08-10 22:05:06格式

<%=ow.formatdatetime("[content:post_time]",0)%>

比如内容列表页把时间处理成2009-08-10格式

<%=ow.formatdatetime("[content:post_time]",2)%>

比如内容详细页把时间处理成2009-08-10 22:05:06格式

<%=ow.formatdatetime("{$content:post_time}",0)%>

比如内容详细页把时间处理成2009-08-10格式

<%=ow.formatdatetime("{$content:post_time}",2)%>



d:天 | h:时 | n:分钟 | s:秒

新闻列表:判断,如果新闻发布时间离现在超过10天,则输出显示10天

<% if OW.dateDiff("d","[content:post_time]",SYS_TIME)>10 then %>
10天
<% end if %>

新闻列表:判断,如果新闻发布时间离现在超过30分钟,则输出显示30分钟

<% if OW.dateDiff("n","[content:post_time]",SYS_TIME)>30 then %>
30分钟
<% end if %>