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

 这篇文章主要介绍了PHP日期函数date格式化UNIX时间的方法,实例分析了php中date函数的使用技巧,需要的朋友可以参考下

 
 

本文实例讲述了PHP日期函数date格式化UNIX时间的方法。分享给大家供大家参考。具体分析如下:

日期函数可以根据指定的格式将一个unix时间格式化成想要的文本输出

使用到函数语法如下

?

1
2

string date (string $Format);
string date (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 ', date ('r'), "n";
echo 'The currend date was ', date ('F j, Y'), "n";
echo 'The currend date was ', date ('M j, Y'), "n";
echo 'The currend date was ', date ('m/d/y'), "n";
echo 'The currend date was the ', date ('jS of M, Y'), "n";
echo 'The currend time was ', date ('g:i:s A T'), "n";
echo 'The currend time was ', date ('H:i:s O'), "n";
echo date ('Y');
date ('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

It was then Sat, 26 Dec 2009 07:09:51 +0000
The currend date was December 26, 2009
The currend date was Dec 26, 2009
The currend date was 12/26/09
The currend date was the 26th of Dec, 2009
The currend time was 7:09:51 AM GMT
The currend time was 07:09:51 +0000
2009 is not a leap year
1261811391 seconds had elapsed since January 1, 1970.

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

时间: 2024-11-03 08:47:33

PHP日期函数date格式化UNIX时间的方法的相关文章

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

mysql获得60天前unix时间的方法_Mysql

在mysql中获取多少天前的unix时间的方法. 首先根据now()获得当前时间,使用adddate()方法获得60天前时间,使用unix_timestamp()方法转换时间类型 select UNIX_TIMESTAMP(ADDDATE(NOW(),INTERVAL -60 DAY)) 首先根据now()获得当前时间 使用adddate()方法获得60天前时间 使用unix_timestamp()方法转换时间类型 以上是小编为您精心准备的的内容,在的博客.问答.公众号.人物.课程等栏目也有的相

php 日期函数 date

使用函式 date() 实现 显示的格式: 年-月-日 小时:分钟:秒 相关时间参数: a - "am" 或是 "pm" A - "AM" 或是 "PM" d - 几日,二位数字,若不足二位则前面补零; 如: "01" 至 "31" D - 星期几,三个英文字母; 如: "Fri" F - 月份,英文全名; 如: "January" h - 12

Linux date格式化输出时间和日期

  date命令参数 •-d, –date=STRING  显示STRING指定的时间 •-f, –file=DATEFILE  类似–date参数显示DATEFILE文件中的每行时间 •-ITIMESPEC, –iso-8601[=TIMESPEC]  以ISO  8601 格式显示日期/时间.TIMESPEC为"date"(只显示日期)."hours "."minutes"."senconds"(显示时间精度)之一,默认为

解析Linux下的时间函数:设置以及获取时间的方法_C 语言

一.时间函数 复制代码 代码如下: time_t time(time_t *t);char *asctime(const struct tm *tm);char *asctime_r(const struct tm *tm, char *buf);char *ctime(const time_t *timep);char *ctime_r(const time_t *timep, char *buf);struct tm *gmtime(const time_t *timep); //获取的为英

PHP中日期时间函数date()用法总结

格式化日期 date() 函数的第一个参数规定了如何格式化日期/时间.它使用字母来表示日期和时间的格式.这里列出了一些可用 的字母: •d - 月中的天 (01-31) •m - 当前月,以数字计 (01-12) •Y - 当前的年(四位数) 您可以在我们的 PHP Date 参考手册中,找到格式参数中可以使用的所有字母. 可以在字母之间插入其他字符,比如 "/"."." 或者 "-",这样就可以增加附加格式了:  代码如下 复制代码 <?

PHP中常见的格式化显示时间日期函数

time()函数 time() 函数返回当前时间的 Unix 时间戳.返回自从 Unix 纪元(格林威治时间 1970 年 1 月 1 日 00:00:00)到当前时间的秒数. 自 PHP 5.1 起在 $_SERVER['REQUEST_TIME'] 中保存了发起该请求时刻的时间戳.  代码如下 复制代码 <?php $time = time(); echo($time . "<br />"); echo(date("D F d Y", $tim

详细讲解PHP的日期时间函数date()

1,年-月-日echo date('Y-m-j');2007-02-6 echo date('y-n-j');07-2-6 大写Y表示年四位数字,而小写y表示年的两位数字:小写m表示月份的数字(带前导),而小写n则表示不带前导的月份数字. echo date('Y-M-j');2007-Feb-6 echo date('Y-m-d');2007-02-06 大写M表示月份的3个缩写字符,而小写m则表示月份的数字(带前导0);没有大写的J,只有小写j表示月份的日期,无前导o:若需要月份带前导则使用

详细学习PHP的日期时间函数date()

1,年-月-日echo date('Y-m-j');2007-02-6 echo date('y-n-j');07-2-6 大写Y表示年四位数字,而小写y表示年的两位数字:小写m表示月份的数字(带前导),而小写n则表示不带前导的月份数字. echo date('Y-M-j');2007-Feb-6 echo date('Y-m-d');2007-02-06 大写M表示月份的3个缩写字符,而小写m则表示月份的数字(带前导0);没有大写的J,只有小写j表示月份的日期,无前导o:若需要月份带前导则使用