smarty中时间格式化函数date_format


PHP #日期 #date_format #函数2012-12-28 15:50
在php中使用date函数来格式化时间戳,smarty中可以使用date_format来实现
具体用法:{$timestamp|date_format:”%Y-%m-%d %H:%M:%S”} 注意:| 两边没有空格
输出形式:2012-12-28 15:52:18


其他用法如下:
{$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”}

相关文章

粤ICP备11097351号-1