PHP使用gmdate实现将一个UNIX 时间格式化成GMT文本的方法


Posted in PHP onMarch 19, 2015

本文实例讲述了PHP使用gmdate实现将一个UNIX 时间格式化成GMT文本的方法。分享给大家供大家参考。具体分析如下:

语法如下:

string gmdate (string $Format)
string gmdate (string $Format, int $Time)

演示代码

<?php
echo "When this page was loaded,\n";
echo 'It was then ', gmdate ('r'), "\n";
echo 'The currend gmdate was ', gmdate ('F j, Y'), "\n";
echo 'The currend gmdate was ', gmdate ('M j, Y'), "\n";
echo 'The currend gmdate was ', gmdate ('m/d/y'), "\n";
echo 'The currend gmdate was the ', gmdate ('jS \o\f M, Y'), "\n";
echo 'The currend time was ', gmdate ('g:i:s A T'), "\n";
echo 'The currend time was ', gmdate ('H:i:s O'), "\n";
echo gmdate ('Y');
gmdate ('L')?(print ' is'):(print ' is not');
echo " a leap year\n";
echo time ('U'), " seconds had elapsed since January 1, 1970.\n";
?>

输出结果如下:

When this page was loaded,
It was then Sun, 27 Dec 2009 13:08:53 +0000
The currend gmdate was December 27, 2009
The currend gmdate was Dec 27, 2009
The currend gmdate was 12/27/09
The currend gmdate was the 27th of Dec, 2009
The currend time was 1:08:53 PM GMT
The currend time was 13:08:53 +0000
2009 is not a leap year
1261919333 seconds had elapsed since January 1, 1970.

希望本文所述对大家的php程序设计有所帮助。

PHP 相关文章推荐
如何在PHP中使用Oracle数据库(5)
Oct 09 PHP
php 多线程上下文中安全写文件实现代码
Dec 28 PHP
浅谈php中mysql与mysqli的区别分析
Jun 10 PHP
ThinkPHP令牌验证实例
Jun 18 PHP
PHP图片自动裁切应付不同尺寸的显示
Oct 16 PHP
PHP中开启gzip压缩的2种方法
Jan 31 PHP
Laravel 中获取上一篇和下一篇数据
Jul 27 PHP
yii2高级应用之自定义组件实现全局使用图片上传功能的方法
Oct 08 PHP
ThinkPHP实现附件上传功能
Apr 27 PHP
PHP简单留言本功能实现代码
Jun 09 PHP
掌握PHP垃圾回收机制详解
Mar 13 PHP
PHP Trait功能与用法实例分析
Jun 03 PHP
php查询mysql数据库并将结果保存到数组的方法
Mar 18 #PHP
PHP使用mysql_fetch_object从查询结果中获取对象集的方法
Mar 18 #PHP
PHP使用mysql_fetch_row查询获得数据行列表的方法
Mar 18 #PHP
PHP使用strtotime计算两个给定日期之间天数的方法
Mar 18 #PHP
PHP使用array_fill定义多维数组的方法
Mar 18 #PHP
php访问数组最后一个元素的函数end()用法
Mar 18 #PHP
php实现兼容2038年后Unix时间戳转换函数
Mar 18 #PHP
You might like
修改Laravel5.3中的路由文件与路径
2016/08/10 PHP
php实现跨域提交form表单的方法【2种方法】
2016/10/17 PHP
JQuery SELECT单选模拟jQuery.select.js
2009/11/12 Javascript
js去除重复字符串两种实现方法
2013/01/09 Javascript
js获取html参数及向swf传递参数应用介绍
2013/02/18 Javascript
使用javascript实现有效时间的控制,并显示将要过期的时间
2014/01/02 Javascript
jQuery实现提示密码强度的代码
2015/07/15 Javascript
谈谈AngularJs中的隐藏和显示
2015/12/09 Javascript
基于javascript实现彩票随机数生成(升级版)
2020/04/17 Javascript
JavaScript中的数组遍历forEach()与map()方法以及兼容写法介绍
2016/05/19 Javascript
微信小程序 扎金花简单实例
2017/02/21 Javascript
认识jQuery的Promise的具体使用方法
2017/10/10 jQuery
javascript实现导航栏分页效果
2019/06/27 Javascript
element跨分页操作选择详解
2020/06/29 Javascript
JavaScript实现HTML导航栏下拉菜单
2020/11/25 Javascript
python下载文件时显示下载进度的方法
2015/04/02 Python
Python 爬虫模拟登陆知乎
2016/09/23 Python
Python获取当前路径实现代码
2017/05/08 Python
python http接口自动化脚本详解
2018/01/02 Python
Python实现读取字符串按列分配后按行输出示例
2018/04/17 Python
Python分割训练集和测试集的方法示例
2019/09/19 Python
解决pycharm上的jupyter notebook端口被占用问题
2019/12/17 Python
python连接PostgreSQL过程解析
2020/02/09 Python
tensorflow 分类损失函数使用小记
2020/02/18 Python
Python根据字符串调用函数过程解析
2020/11/05 Python
快速创建python 虚拟环境
2020/11/28 Python
Abbacino官网:包、钱包和女士配饰
2019/04/15 全球购物
英国最好的包装供应商:Priory Direct
2019/12/17 全球购物
俄罗斯在线购买飞机票、火车票、巴士票网站:Tutu.ru
2020/03/16 全球购物
会计专业推荐信
2013/10/29 职场文书
关于赌博的检讨书
2014/01/24 职场文书
大学四年个人自我小结
2014/03/05 职场文书
未受刑事制裁公证证明
2014/09/20 职场文书
2014员工聘用协议书(最新版)
2014/11/24 职场文书
基于Golang 高并发问题的解决方案
2021/05/08 Golang
MySQL 原理与优化之Limit 查询优化
2022/08/14 MySQL