首页 > 其他 > 详细

smarty 时间格式化date_format

时间:2014-08-22 12:22:36      阅读:406      评论:0      收藏:0      [点我收藏+]

代码如下:
$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"}


输出代码如下:
Feb 6, 2001
Tuesday, February 6, 2001
:33:00
Feb 5, 2001
Monday, February 5, 2001
:33:00

常用格式:{$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}   显示2010-05-16 05:20:14

 

更多请参看smarty手册,下面只作简单几个介绍。。

%a - abbreviated weekday name according to the current locale
(根据当地格式输出“星期”缩写格式)
%A - full weekday name according to the current locale
(根据当地格式输出“星期”全称格式)
%b - abbreviated month name according to the current locale
(根据当地格式输出“月”缩写格式)
%B - full month name according to the current locale
(根据当地格式输出“月”全称格式)

smarty 时间格式化date_format,布布扣,bubuko.com

smarty 时间格式化date_format

原文:http://www.cnblogs.com/sandea/p/3928740.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!