PHP中的strtotime()函数

strtotime()函数将英语文本日期或时间解析为Unix时间戳。成功返回时间戳,否则返回FALSE。在PHP 5.1.0之前,此函数在失败时将返回-1。

语法

strtotime(time, now)

参数

  • 时间 -指定时间的字符串进行解析。

  • 现在 -时间戳用于计算返回的值。

返回

strtotime()函数返回成功时间戳,否则返回FALSE。在PHP 5.1.0之前,此函数在失败时将返回-1。

示例

以下是一个例子-

<?php

   $timestamp = strtotime( "June 20, 2018" ); print date( 'Y-m-d', $timestamp );

?>

输出结果

2018-06-20

示例

让我们看另一个例子-

<?php

   echo(strtotime("now") . "<br>");

   echo(strtotime("10 March 2018") . "<br>");

   echo(strtotime("+10 hours") . "<br>");

?>

输出结果

1539235161

1520640000

1539271161

以上是 PHP中的strtotime()函数 的全部内容, 来源链接: utcz.com/z/316801.html

回到顶部