Home >php教程 >php手册 >PHP实现时间轴函数详解

PHP实现时间轴函数详解

WBOY
WBOYOriginal
2016-06-21 08:53:311340browse

本文将介绍如何实现基于时间轴的时间的转换。

首先我们要明白时间的几个函数:

time():返回当前的 Unix 时间戳

date():格式化一个本地时间/日期。

应用举例:

<code><font face="NSimsun">date(<span>"Y-m-d H:i:s"</span>,time()); <br></font></code>

格式化当前时间,输出:2010-10-11 05:27:35

strtotime():将任何英文文本的日期时间描述解析为 Unix 时间戳。

应用举例:

<code><font face="NSimsun"><span>echo</span> strtotime(<span>"+1 day"</span>), <span>"\n"</span>; <br></font></code>

输出1天前的时间戳:1286861475

date_default_timezone_set():设定要用的默认时区。

一般我们设置北京时间:date_default_timezone_set("PRC");



Statement:
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