dedecms时间格式汇总代码如下:
{dede:field name=’pubdate’ function=’strftime(“Y年m月d日 H:M:S”,”@me”)’ /} 调用出来的效果:2007年1月1日 18:30:02
{dede:field name=’pubdate’ function=’strftime(“Y-m-d H:M:S”,”@me”)’ /} 调用出来的效果:2007-1-1 18:30:02
{dede:field name=’pubdate’ function=’strftime(“Y年m月d日 H时M分S秒”,”@me”)’ /} 调用出来的效果:2007年1月1日 18时30分02秒
{dede:field name=’pubdate’ function=’strftime(“m-d H:M:S”,”@me”)’ /} 调用出来的效果:1-1 18:30:02
{dede:field name=’pubdate’ function=’strftime(“m-d”,”@me”)’ /} 调用出来的效果:1-1
原文:https://www.cnblogs.com/fymuban/p/14814212.html