我是靠谱客的博主 傻傻心情,最近开发中收集的这篇文章主要介绍strtotime 对于减month 的bug,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

strtotime问题:

https://derickrethans.nl/obtaining-the-next-month-in-php.html



strtotime('-x month'); 在涉及到月份修改的时候,可能不会得到预料的结果。

此为php的一个bug:

https://bugs.php.net/bug.php?id=27793

 

如:当前时间为: 2011-08-31 17:21:22

<?php
date_default_timezone_set('Asia/Shanghai');
$t = time();
print_r(array(
            date('Y年m月',$t),
            date('Y年m月',strtotime('- 1 month',$t)),
            date('Y年m月',strtotime('- 2 month',$t)),
));

?>

上面代码输出:

Array
(
    [0] => 2011年08月
    [1] => 2011年07月
    [2] => 2011年07月
)

而预期的结果是:

Array
(
    [0] => 2011年08月
    [1] => 2011年07月
    [2] => 2011年06月
)

 

============================================

 

可以用如下方法解决:

<?php

date_default_timezone_set('Asia/Shanghai');

$first_day_of_month = date('Y-m',time()) . '-01 00:00:01';
$t = strtotime($first_day_of_month);
print_r(array(
            date('Y年m月',$t),
            date('Y年m月',strtotime('- 1 month',$t)),
            date('Y年m月',strtotime('- 2 month',$t)),
));

?>

输出:

Array
(
    [0] => 2011年08月
    [1] => 2011年07月
    [2] => 2011年06月
)

最后

以上就是傻傻心情为你收集整理的strtotime 对于减month 的bug的全部内容,希望文章能够帮你解决strtotime 对于减month 的bug所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部