php中timestamp 的意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php中timestamp 的意思相关的知识,希望对你有一定的参考价值。
php中的 timestamp 是时间戳的意思PHP中的 strtotime() 函数可以把时间解析为时间戳
strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳。
strtotime(time,now)
参数说明
time 规定要解析的时间字符串。
now 用来计算返回值的时间戳。如果省略该参数,则使用当前时间。
详细说明
该函数预期接受一个包含美国英语日期格式的字符串并尝试将其解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数),其值相对于 now 参数给出的时间,如果没有提供此参数,则用系统当前时间。
该函数将使用 TZ 环境变量(如果有的话)来计算时间戳。自 PHP 5.1.0 起有更容易的方法来定义时区用于所有的日期/时间函数。此过程在 date_default_timezone_get() 函数页面中有说明。
返回值
成功则返回时间戳,否则返回 FALSE。在 PHP 5.1.0 之前本函数在失败时返回 -1。
例如:
<?php
echo(strtotime("now"));
echo(strtotime("3 October 2005"));
echo(strtotime("+5 hours"));
echo(strtotime("+1 week"));
echo(strtotime("+1 week 3 days 7 hours 5 seconds"));
echo(strtotime("next Monday"));
echo(strtotime("last Sunday"));
?>
输出:
1138614504
1128290400
1138632504
1139219304
1139503709
1139180400
1138489200 参考技术A 时间戳
由1970年01月01日0时0分0秒到此刻的秒数..本回答被提问者采纳 参考技术B unix时间戳
以上是关于php中timestamp 的意思的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 use_wallclock_as_timestamps?
从 CURRENT_TIMESTAMP (DB2) 中减去 HOURS