当前位置: 首页 > 编程笔记 >

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

赫连棋
2023-03-14
本文向大家介绍PHP日期函数date格式化UNIX时间的方法,包括了PHP日期函数date格式化UNIX时间的方法的使用技巧和注意事项,需要的朋友参考一下

本文实例讲述了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 ('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 \o\f 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 year\n";
echo time ('U'), " seconds had elapsed since January 1, 1970.\n";
?>

输出结果如下

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

 类似资料:
  • DateFormat类提供各种格式来一起格式化日期和时间。 将使用DateFormat.getDateTimeInstance()方法。 请参阅下面的示例。 在下面的示例中,我们将展示如何使用不同的格式来设置日期和时间的格式。 IOTester.java import java.text.DateFormat; import java.util.Date; public class I18NTes

  • 相对moment来说十分轻量的实现。 使用 import { dateFormat } from 'vux' dateFormat(new Date(), 'YYYY-MM-DD HH:mm:ss') 作为 filter 使用 import { dateFormat } from 'vux' export default { filters: { dateFormat } }

  • Locale可用于在SimpleDateFormat类中的模式上创建特定于语言环境的格式。 请参阅以下使用特定于语言环境的SimpleDateFormat类的示例。 IOTester.java import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.

  • 本文向大家介绍js时间日期格式化封装函数,包括了js时间日期格式化封装函数的使用技巧和注意事项,需要的朋友参考一下   js虽然提供了各种获取时间Date对象的不同属性方法,如:getDate 方法 | getDay 方法 | getFullYear 方法 | getHours 方法 ... ... 等等,但是却没有像java那样提供一个方法来供用户来根据自身提供的模板(pattern),来格式化

  • 问题内容: 我正在从获取日期的地方调用API ,但我不知道这是什么格式。该日期格式如何称呼?我不知道用什么格式的谷歌。 谁能帮我得到这个日期的格式? 我正在调用的API在.NET服务器上。当我使用PHP调用它时,它为创建的日期提供了以下日期格式: 问题答案: 首先,您需要了解自己的格式 那你有 时间戳(U)= 1365004652 毫秒(u)= 303 与格林威治时间(GMT)的差(O)= -05

  • 主要内容:日期格式化符号,Python处理,Pandas处理当进行数据分析时,我们会遇到很多带有日期、时间格式的数据集,在处理这些数据集时,可能会遇到日期格式不统一的问题,此时就需要对日期时间做统一的格式化处理。比如“Wednesday, June 6, 2020”可以写成“6/6/20”,或者写成“06-06-2020。 日期格式化符号 在对时间进行格式化处理时,它们都有固定的表示格式,比如小时的格式化符号为 ,分钟简写为 ,秒简写为 。下表对常用的日期