Home > php教程 > php手册 > body text

PHP 中的时间函数

WBOY
Release: 2016-06-06 19:59:41
Original
1179 people have browsed it

在学习使用PHP的过程中,遇到一个小问题,就是获取当时时间的前一个小时的时间,看到有的人的代码写的有点啰嗦。以前在shell中取时间的时候,直接使用date命令,想PHP中或许也会有类的函数,问了一下同学,把结果和大家分享下。 在PHP中,使用时间时,函数为

在学习使用PHP的过程中,遇到一个小问题,就是获取当时时间的前一个小时的时间,看到有的人的代码写的有点啰嗦。以前在shell中取时间的时候,直接使用date命令,想PHP中或许也会有类似的函数,问了一下同学,把结果和大家分享下。

在PHP中,使用时间时,函数为: date,如果我想获取前一个小时的时间,并且,想要的格式为YYYYmmdd:HH 即 20111228:13 这样的格式,该怎么使用呢?

strtotime (), 可以以当前时间为坐标,得到一个时间,存放到整数当中。然后再想要具体的格式的话,直接拿这个整数来转换格式就可以了。看下面的小例子:

$timestamp = strtotime("-1 hour");  
$str = date("Ymd:H", $timestamp); //  Y:四位数   m: 00-12  d:00-31  H:00-23

具体的使用函数请参考 date函数的说明


echo $str. "
";

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template