我如何在 codeigniter php 中使用 SQLDATE?

发布于 2024-12-07 02:29:14 字数 84 浏览 0 评论 0原文

你能解释一下下面这一行吗?请举一些例子。

strtotime(SQLDATE." +1 month")

Can you explain below line? pls give some example.

strtotime(SQLDATE." +1 month")

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

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

发布评论

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

评论(2

坐在坟头思考人生 2024-12-14 02:29:14

这不是 CodeIgniter 特有的,它是一个通用的 PHP 函数:

来自 docs

该函数期望得到一个包含英文日期格式的字符串,并将尝试将该格式解析为 Unix 时间戳(自 1970 年 1 月 1 日 00:00:00 UTC 以来的秒数)

此外, 关于相对日期/时间格式

格式:数字空间? (单位 | '周')
处理值为数字的相对时间项。
示例:“+5 周”、“12 天”、“-7 个工作日”

因此,您的示例:

SQLDATE = '2011-10-28';
strtotime(SQLDATE. "+1 month");

将返回 2011 年 10 月 28 日之后 1 个月的日期的 Unix 时间戳。

This is not specific to CodeIgniter, it's a generic PHP function:

From the docs:

The function expects to be given a string containing an English date format and will try to parse that format into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 UTC)

Also, regarding the relative date/time format:

Format: number space? (unit | 'week')
Handles relative time items where the value is a number.
Example: "+5 weeks", "12 day", "-7 weekdays"

So your example:

SQLDATE = '2011-10-28';
strtotime(SQLDATE. "+1 month");

will return the Unix timestamp for the date 1 month after the 28th October 2011.

扶醉桌前 2024-12-14 02:29:14

简单地说,您只需在 SQLDATE 中的日期值上添加 1 个月。因此,在您的示例中, strtotime 将返回的值是 2011-10-28 之后 1 个月,即 2011-11-28。

Strtotime 返回自纪元以来的秒数。如果您对其进行格式化,则 strtotime 的返回值将更有意义:

php > define("SQLDATE",'2011-10-28');
php > echo date("Y-m-d",strtotime(SQLDATE));
2011-10-28
php > echo date("Y-m-d",strtotime(SQLDATE . "+1 month"));
2011-11-28
php > 

Simply put you are just adding 1 month to the value of the date in SQLDATE. So in your example, the value that strtotime will return is 1 month after 2011-10-28 which is 2011-11-28.

Strtotime returns the number of seconds since the epoch. The return values of strtotime will make more sense if you format it:

php > define("SQLDATE",'2011-10-28');
php > echo date("Y-m-d",strtotime(SQLDATE));
2011-10-28
php > echo date("Y-m-d",strtotime(SQLDATE . "+1 month"));
2011-11-28
php > 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文