//返回当前时间戳
1.$smarty.now
//用来格式化时间
2.date_format
//常用用法
{$smarty.now|date_format:’%Y-%m-%d %H:%M:%S’}
//其他用法
{$smarty.now|date_format}//格式化当前时间
{$smarty.now|date_format:”%H:%M:%S”}
{$currtime|date_format}//格式化传过来的时间
{$currtime|date_format:”%A, %B %e, %Y”}
{$currtime|date_format:”:”%Y-%m-%d %H:%M:%S”}
以下是输出结果:
Dec 26, 2014
08:55:25
Dec 26, 2014
Friday, December 26, 2014
2014-12-26 08:55:21