PHP如何使用strtotime(函数

这篇文章主要为大家展示了“PHP如何使用strtotime()函数”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“PHP如何使用strtotime()函数”这篇文章吧。

strtotime()

strtotime() 函数用于将英文文本字符串表示的日期转换为时间戳,为 date() 的反函数,成功返回时间戳,否则返回 FALSE 。

语法:

int strtotime ( string time [, int now] )

参数 time 为被解析的字符串,是根据 GNU 日期输入格式表示的日期。

例子:

<?php
echo strtotime("2009-10-21 16:00:10");
//输出 1256112010
echo strtotime("10 September 2008");
//输出 1220976000
echo strtotime("+1 day"), "<br />";
//输出明天此时的时间戳
?>

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注