impala 日期格式化
- 作者: 付出眞芯丶未必能嘚到嗳8191650
- 来源: 51数据库
- 2020-09-25
使用date_format进行日期格式化,前提要转换的日期是整型时间戳,如果不是需要先strtotime
$smarty = new smarty; $smarty->assign('yesterday', strtotime('-1 day')); $smarty->display('index.tpl'); index.tpl: {$smarty.now|date_format} {$smarty.now|date_format:"%a, %b %e, %y"} {$smarty.now|date_format:"%h:%m:%s"} {$yesterday|date_format} {$yesterday|date_format:"%a, %b %e, %y"} {$yesterday|date_format:"%h:%m:%s"}
$smarty = new smarty; $smarty->assign('yesterday', strtotime('-1 day')); $smarty->display('index.tpl'); index.tpl: {$smarty.now|date_format} {$smarty.now|date_format:"%a, %b %e, %y"} {$smarty.now|date_format:"%h:%m:%s"} {$yesterday|date_format} {$yesterday|date_format:"%a, %b %e, %y"} {$yesterday|date_format:"%h:%m:%s"}
推荐阅读
