我如何修复上一周的代码,以便它正常工作

时间:2013-06-07 11:30:57

标签: php html

这是我面临问题的代码

这里将当前周数保存在一个变量$ week

<?php
    $week=date('W')-1
?>

这里是在网址中发布该周数,以便通过减少已发布的$周数来尝试获取前一周

<td width="120" height="70" align="center" style="border-bottom:1px dashed #000000; border-top:1px dashed #000000;">
    <h1 style="color:#000000;"/>
    <a href="ex2.php?week=<?=$week-1?>">
        <img src="../images/previous_week.jpg" width="91" height="44" border="0" />
    </a>
</td>

以下代码的问题是.....

它一直工作到第一周的行军,但它没有工作从前进一周显示unix时间戳是1970年1月1日...

<小时/> 以下是从发布的周数

获取上周日期的代码
<?php
include ('class.php');
if(!isset($_GET['week']))
{
    $count = $obj->getD();

    if(date('N') == $count)
    {

        $prior_week = date('W') - 1;
        if($prior_week == 0)
        {

            $prior_week = 52;
            $year = date('Y') - 1;
        } else
            $year = date('Y');

            echo date("d-m-Y", strtotime($year.'W'.$prior_week.'1'));
            echo " (MON)~ ";
            echo date("d-m-Y", strtotime($year.'W'.$prior_week.'7'));
            echo " (SUN) ";
        }
    } else{

        $count = $obj->getD();
        $week=$_GET['week'];

        if($week>=0)
        {
            if(date('N') == $count)
            {
                $prior_week = $week- 1;
                if($prior_week == 0)
                {
                    $prior_week = 52;
                    $year = date('Y') - 1;
                }
                else
                   $year = date('Y');

            echo date("d-m-Y", strtotime(date('Y').'W'.$prior_week.'1'));
            echo " (MON)~ ";
            echo date("d-m-Y", strtotime(date('Y').'W'.$prior_week.'7'));
            echo " (SUN) ";
        }
    }

}
?>

1 个答案:

答案 0 :(得分:1)

问题在于您传递给strtotime的日期格式。

当数字为10时,您减去1并最终执行:

date("Y-m-d",strtotime("2013W91"));

实际上你想做的是:

date("Y-m-d",strtotime("2013W091"));

请确保使用0

填充小于10的周数
// ...
if ($prior_week < 10) {
  $prior_week = "0".$prior_week;
}
echo date("d-m-Y", strtotime(date('Y').'W'.$prior_week.'1'));