php Smarty date_format [格式化时间日期]


Posted in PHP onMarch 15, 2010

Example 5-8. date_format[日期格式]
index.php:

$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"}

OUTPUT:
Feb 6, 2001 
Tuesday, February 6, 2001 
:33:00 
Feb 5, 2001 
Monday, February 5, 2001 
:33:00

Example 5-9. date_format conversion specifiers[日期转换说明]
%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 
(根据当地格式输出“月”全称格式) 
%c - preferred date and time representation for the current locale 
%C - century number (the year divided by 100 and truncated to an integer, range 00 to 99) 
%d - day of the month as a decimal number (range 00 to 31) 
%D - same as %m/%d/%y 
%e - day of the month as a decimal number, a single digit is preceded by a 
space (range 1 to 31) 
%g - Week-based year within century [00,99] 
%G - Week-based year, including the century [0000,9999] 
%h - same as %b 
%H - hour as a decimal number using a 24-hour clock (range 00 to 23) 
%I - hour as a decimal number using a 12-hour clock (range 01 to 12) 
%j - day of the year as a decimal number (range 001 to 366) 
%k - Hour (24-hour clock) single digits are preceded by a blank. (range 0 to 23) 
%l - hour as a decimal number using a 12-hour clock, single digits preceeded by 
a space (range 1 to 12) 
%m - month as a decimal number (range 01 to 12) 
%M - minute as a decimal number 
%n - newline character 
%p - either `am' or `pm' according to the given time value, or the corresponding strings for the current locale 
%r - time in a.m. and p.m. notation 
%R - time in 24 hour notation 
%S - second as a decimal number 
%t - tab character 
%T - current time, equal to %H:%M:%S 
%u - weekday as a decimal number [1,7], with 1 representing Monday 
%U - week number of the current year as a decimal number, starting with the first Sunday as the first day of the first week 
%V - The ISO 8601:1988 week number of the current year as a decimal number, range 01 to 53, where week 1 
is the first week that has at least 4 days in the current year, and with Monday as the first day of the week. 
%w - day of the week as a decimal, Sunday being 0 
%W - week number of the current year as a decimal number, starting with the first Monday as the first day of the first week 
%x - preferred date representation for the current locale without the time 
%X - preferred time representation for the current locale without the date 
%y - year as a decimal number without a century (range 00 to 99) 
%Y - year as a decimal number including the century 
%Z - time zone or name or abbreviation 
%% - a literal `%' character

PROGRAMMERS NOTE: date_format is essentially a wrapper to PHP's strftime()
function. You may have more or less conversion specifiers available depending
on your system's strftime() function where PHP was compiled. Check your
system's manpage for a full list of valid specifiers.
程序员提示:date_format本质上是php的strftime()函数的一个包装。
当php被编译的时候你可以或多或少的依靠系统的strftime()转换有效的区分符。
可以查看系统手册的有效区分符的全表.
PHP 相关文章推荐
php5数字型字符串加解密代码
Apr 24 PHP
php AJAX实例根据邮编自动完成地址信息
Nov 23 PHP
PHP读取文件并可支持远程文件的代码分享
Oct 03 PHP
php调用新浪短链接API的方法
Nov 08 PHP
php 批量查询搜狗sogou代码分享
May 17 PHP
php实现在多维数组中查找特定value的方法
Jul 29 PHP
老生常谈PHP中的数据结构:DS扩展
Jul 17 PHP
php脚本守护进程原理与实现方法详解
Jul 20 PHP
PHP使用Redis实现防止大并发下二次写入的方法
Oct 09 PHP
PHP实现双链表删除与插入节点的方法示例
Nov 11 PHP
php从数据库读取数据,并以json格式返回数据的方法
Aug 21 PHP
PHP实现长轮询消息实时推送功能代码实例讲解
Feb 26 PHP
libmysql.dll与php.ini是否真的要拷贝到c:\windows目录下呢
Mar 15 #PHP
php下获取客户端ip地址的函数
Mar 15 #PHP
PHP 模拟$_PUT实现代码
Mar 15 #PHP
php Xdebug 调试扩展的安装与使用.
Mar 13 #PHP
php5 non-thread-safe和thread-safe这两个版本的区别分析
Mar 13 #PHP
php 无法载入mysql扩展
Mar 12 #PHP
PHP生成Flash动画的实现代码
Mar 12 #PHP
You might like
PHP实现提取一个图像文件并在浏览器上显示的代码
2012/10/06 PHP
一个基于phpQuery的php通用采集类分享
2014/04/09 PHP
微信公众平台开发实现2048游戏的方法
2015/04/15 PHP
jQuery ajax+PHP实现的级联下拉列表框功能示例
2019/02/12 PHP
PHP7实现和CryptoJS的AES加密方式互通示例【AES-128-ECB加密】
2019/06/08 PHP
php 命名空间(namespace)原理与用法实例小结
2019/11/13 PHP
js获得当前时区夏令时发生和终止的时间代码
2014/02/23 Javascript
jQuery中attr()和prop()在修改checked属性时的区别
2014/07/18 Javascript
JavaScript将数组转换成CSV格式的方法
2015/03/19 Javascript
js实现图片缓慢放大缩小效果
2016/08/02 Javascript
Vue.js列表渲染绑定jQuery插件的正确姿势
2017/06/29 jQuery
详解webpack性能优化——DLL
2017/10/20 Javascript
vue jsx 使用指南及vue.js 使用jsx语法的方法
2017/11/11 Javascript
webpack将js打包后的map文件详解
2018/02/22 Javascript
JS中的JSON对象的定义和取值实现代码
2018/05/09 Javascript
Vue 实现手动刷新组件的方法
2019/02/19 Javascript
JavaScript如何把两个数组对象合并过程解析
2019/10/10 Javascript
openlayers 3实现车辆轨迹回放
2020/09/24 Javascript
[01:46]TI4西雅图DOTA2前线报道 中国选手抱团调时差
2014/07/08 DOTA
[56:12]LGD vs Optic Supermajor小组赛D组胜者组决赛 BO3 第一场 6.3
2018/06/04 DOTA
Python新手们容易犯的几个错误总结
2017/04/01 Python
python绘制双柱形图代码实例
2017/12/14 Python
Python装饰器(decorator)定义与用法详解
2018/02/09 Python
Python计算库numpy进行方差/标准方差/样本标准方差/协方差的计算
2018/12/28 Python
如何安装并在pycharm使用selenium的方法
2020/04/30 Python
使用Python FastAPI构建Web服务的实现
2020/06/08 Python
CSS3 开发工具收集
2010/04/17 HTML / CSS
纯HTML+CSS3制作导航菜单(附源码)
2013/04/24 HTML / CSS
Topshop法国官网:英国快速时尚品牌
2018/04/08 全球购物
以太网Ethernet IEEE802.3
2013/08/05 面试题
九年级科学教学反思
2014/01/29 职场文书
手机银行营销方案
2014/03/14 职场文书
《高尔基和他的儿子》教学反思
2014/04/09 职场文书
2014年办公室文秘工作总结
2014/12/09 职场文书
申报材料格式
2014/12/30 职场文书
MySQL系列之十五 MySQL常用配置和性能压力测试
2021/07/02 MySQL