让ECSHOP模板支持转smarty时间戳

找到includes/cls_template.php

在大约640行,加入:

[code lang=”php”]
case ‘time’:
$p = ‘date("Y-m-d H:i:s",’ . $p . ‘)’;
break;
[/code]

前台模板调用:

时间:{$val.add_time|time}

自己扩展。