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

 这篇文章主要介绍了PHP使用gmdate实现将一个UNIX 时间格式化成GMT文本的方法,实例分析了php中gmdate函数的功能及使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下

 
 

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

语法如下:

?

1
2

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

演示代码

?

1
2
3
4
5
6
7
8
9
10
11
12
13
14

<?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 of 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 yearn";
echo time ('U'), " seconds had elapsed since January 1, 1970.n";
?>

输出结果如下:

?

1
2
3
4
5
6
7
8
9
10

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程序设计有所帮助。

时间: 2024-10-31 13:16:05

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

PHP日期函数date格式化UNIX时间的方法

 这篇文章主要介绍了PHP日期函数date格式化UNIX时间的方法,实例分析了php中date函数的使用技巧,需要的朋友可以参考下     本文实例讲述了PHP日期函数date格式化UNIX时间的方法.分享给大家供大家参考.具体分析如下: 日期函数可以根据指定的格式将一个unix时间格式化成想要的文本输出 使用到函数语法如下 ? 1 2 string date (string $Format); string date (string $Format, int $Time); 下面是演示代码 ?

PHP日期函数date格式化UNIX时间的方法_php技巧

本文实例讲述了PHP日期函数date格式化UNIX时间的方法.分享给大家供大家参考.具体分析如下: 日期函数可以根据指定的格式将一个unix时间格式化成想要的文本输出 使用到函数语法如下 string date (string $Format); string date (string $Format, int $Time); 下面是演示代码 <?php echo "When this page was loaded,\n"; echo 'It was then ', date

Matplotlib绘图双纵坐标轴设置及控制设置时间格式

双y轴坐标轴图 今天利用matplotlib绘图,想要完成一个双坐标格式的图. fig=plt.figure(figsize=(20,15))  ax1=fig.add_subplot(111)  ax1.plot(demo0719['TPS'],'b-',label='TPS',linewidth=2)  ax2=ax1.twinx()#这是双坐标关键一步  ax2.plot(demo0719['successRate']*100,'r-',label='successRate',linewi

[工具类]将时间转换为unix时间戳格式

写在前面 由于在数据库中存的时间有时间戳格式的数据,在解析以及保存的时候,就需要考虑到数据格式的兼容性问题.看到数据库中的时间字段基本上都是以时间戳格式存储的,没办法,只能将时间进行转换了,考虑到其他系统可能要对时间字段进行操作,就不得不考虑时间的兼容性了. 时间戳辅助类 什么是时间戳? Unix时间戳(Unix timestamp),或称Unix时间(Unix time).POSIX时间(POSIX time),是一种时间表示方式,定义为从格林威治时间1970年01月01日00时00分00秒(

mysql unix准换时间格式查找指定日期数据代码_Mysql

复制代码 代码如下: select * from table where DATE_FORMAT(FROM_UNIXTIME(createtime),'%Y-%m-%d')='2014-01-02' FROM_UNIXTIME使用语法 FROM_UNIXTIME(unix_timestamp,format) FROM_UNIXTIME(unix_timestamp), FROM_UNIXTIME(unix_timestamp,format)是MySQL里的时间函数 ,unix_timestamp

mysql unix准换时间格式查找指定日期数据代码

select * from table where DATE_FORMAT(FROM_UNIXTIME(createtime),'%Y-%m-%d')='2014-01-02' FROM_UNIXTIME使用语法 FROM_UNIXTIME(unix_timestamp,format) FROM_UNIXTIME(unix_timestamp), FROM_UNIXTIME(unix_timestamp,format)是MySQL里的时间函数 ,unix_timestamp可以是字段名,也可以直

php修改时间格式的代码

修改时间格式: date("Y-m-d",strtotime($list['pubdate'])); 学习解释:将时间放入strtotime为时间戳后用date()转化格式.下面写了两个函数的 PHP strtotime() 函数 strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳. 语法 strtotime(time,now)参数 描述 time 规定要解析的时间字符串. now 用来计算返回值的时间戳.如果省略该参数,则使用当前时间. PHP Date

Unix时间戳 POSIX时间 Unix时间

  时间戳是自 1970 年 1 月 1 日(00:00:00 GMT)以来的秒数,也被称为 Unix 时间戳(Unix Timestamp). Unix时间戳(Unix timestamp),或称Unix时间(Unix time).POSIX时间(POSIX time),是一种时间表示方式,定义为从格林威治时间1970年01月01日00时00分00秒起至现在的总秒数.Unix时间戳不仅被使用在Unix系统.类Unix系统中,也在许多其他操作系统中被广泛采用. 如何在不同编程语言中获取现在的Un

php修改时间格式的代码_php技巧

修改时间格式: date("Y-m-d",strtotime($list['pubdate'])); 学习解释:将时间放入strtotime为时间戳后用date()转化格式.下面写了两个函数的 PHP strtotime() 函数 strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳. 语法 strtotime(time,now)参数 描述 time 规定要解析的时间字符串. now 用来计算返回值的时间戳.如果省略该参数,则使用当前时间. PHP Date