PHP strtotime 和 mktime 返回不同的结果

发布于 2024-11-05 00:27:48 字数 312 浏览 0 评论 0原文

我是编码和 php 领域的新手,并且对为什么 strtotimemktime 函数返回不同的结果感到困惑,例如

$endyear = date('Y', strtotime('+5 years')); //returns 2011 - 2015
$endyear = date('Y', mktime(0,0,0,0,0,$year+5)); //returns 2011 - 2014

EDIT

变量$year 的值为 $2011。

I am new to the world of coding as well as php and am confused by why the strtotime and mktime functions return different results e.g.

$endyear = date('Y', strtotime('+5 years')); //returns 2011 - 2015
$endyear = date('Y', mktime(0,0,0,0,0,$year+5)); //returns 2011 - 2014

EDIT

The variable $year has the value of $2011.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过潦 2024-11-12 00:27:48

您使用零作为月份和日期参数,这本质上意味着

Day 0 = Last day of the previous month
Month 0 = Last month of the previous year

文档中都有 - http://php.net/manual/en/function.mktime.php

You're using zeroes for the month and day arguments, this essentially means

Day 0 = Last day of the previous month
Month 0 = Last month of the previous year

It's all there in the documentation - http://php.net/manual/en/function.mktime.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文