如何解析 tpl 文件中的 json 日期?
How can I parse json date in tpl files?
我的jSon日期格式:
release_date: "1426153440",
当我这样使用时,它完成了但有格式问题:
{$info.release_date}
生成为:
1426153440
如何解决 tpl 文件的格式问题?谢谢。
您可以使用 date_format
, with it you can combine the conversion specifiers available in strftime()
.
示例:
{$info.release_date|date_format:"%Y-%m-%d"}
我的jSon日期格式:
release_date: "1426153440",
当我这样使用时,它完成了但有格式问题:
{$info.release_date}
生成为:
1426153440
如何解决 tpl 文件的格式问题?谢谢。
您可以使用 date_format
, with it you can combine the conversion specifiers available in strftime()
.
示例:
{$info.release_date|date_format:"%Y-%m-%d"}