日期范围字段无法正常工作

时间:2013-10-09 14:09:43

标签: php codeigniter expressionengine

我是一名学生网络程序员,并且遇到了我最近被分配的任务的问题。担任我职务的上一个人创建了一个有点小错误的新闻报道网站。

该网站的问题是,当您指定要显示新闻文章的日期范围时,日期将恢复为之前的状态,或者它们将随机更改为某些内容。尝试在2010年之前设置日期是每次都要发生此问题的唯一方法。有时它会在出现问题之前用于许多用途。

只是为了澄清,我不希望有人给我一个彻头彻尾的答案/为我做我的工作,特别是因为我真的想学习和提高我的技能。如果有人能指出我正确的方向来解决这个问题,我真的很感激。

以下是我正在查看的文件中对日期的所有引用:

// Create dates
$year = ( isset( $get['year'] ) ) ? $get['year'] : date("Y");
$year2 = ( isset( $get['year2'] ) ) ? $get['year2'] : date("Y");
$month = ( isset( $get['month'] ) ) ? $get['month'] : date("m");
$month2 = ( isset( $get['month2'] ) ) ? $get['month2'] : date("m");
$day = ( isset( $get['day'] ) ) ? $get['day'] : date("d");
$day2 = ( isset( $get['day2'] ) ) ? $get['day2'] : date("d");

//create first and second dates for range
$t_current = mktime(0, 0, 0, $month, $day, $year); // Current month Unix timestamp
$t_next = mktime(0, 0, 0, $month2, $day2+1, $year2); // date2 unix timestamp for date range

// Criteria
if ( $author_url) {
    $this->EE->db -> where ( $author_name_field_id, $author_name);

$this->EE->db
    -> where ("exp_channel_titles.entry_date >= $t_current")
    -> where ("exp_channel_titles.entry_date <= $t_next");

}

else {
    $this->EE->db
    -> where ("exp_channel_titles.entry_date >= $t_current")
    -> where ("exp_channel_titles.entry_date <= $t_next");
}

模板:

<div class="datelists">
    <select id="month" name="month" style="display:none">
<?php
//lists months
            for ($i = 0; $i <= 11; ++$i) 
            {
                $time = strtotime(sprintf('+%d months', $i));
                $value = date('m', $time);
                $label = date('F', $time);

//if month is set stay on that month    
                if($month==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);}
            }

  ?>
//first month selected instead of blank
        $("#target option:first")

    </select>
    <select id="day" name="day" style="display:none">   
<?php
//lists days
            for ($i = 0; $i <= 31; ++$i) 
            {

                $time = strtotime(sprintf('+%d days', $i));
                $value = date('d', $time);
                $label = date('d', $time);
//if day is set stay on that day            
                if($day==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);} 
            }           
//first year selected instead of blank
  ?>
    $("#target option:first")
    </select>
    <select id="year" name="year" style="display:none"> 
<?php   
//lists years
            for ($i = 0; $i <= 3; ++$i) 
            {                 
                $time = strtotime(sprintf('-%d years', $i));
                $value = date('Y', $time);
                $label = date('Y', $time);  
//if year is set stay on that year          
                if($year==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);}         
            }

//first year selected instead of blank
  ?>
    $("#target option:first")
    </select>
    <input type="hidden" id="datepicker" />
    <select id="month2" name="month2" style="display:none">
<?php
//lists months
            for ($i = 0; $i <= 11; ++$i) 
            {
                $time = strtotime(sprintf('+%d months', $i));
                $value = date('m', $time);
                $label = date('F', $time);
//if month is set stay on that month        
                if($month2==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);}
            }
  ?>
//first month selected instead of blank
        $("#target option:first")
    </select>
    <select id="day2" name="day2" style="display:none">
<?php
//lists days
            for ($i = 0; $i <= 31; ++$i) 
            {     
                $time = strtotime(sprintf('+%d days', $i));
                $value = date('d', $time);
                $label = date('d', $time);
//if day is set stay on that day            
                if($day2==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);}     
            }
//first year selected instead of blank
  ?>
    $("#target option:first")
    </select>
    <select id="year2" name="year2" style="display:none">
<?php
//lists years
            for ($i = 0; $i <= 3; ++$i) 
            {             
                $time = strtotime(sprintf('-%d years', $i));
                $value = date('Y', $time);
                $label = date('Y', $time);  
//if year is set stay on that year          
                if($year2==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);}             
            }               
//first year selected instead of blank
  ?>
    $("#target option:first")
    </select>
    <input type="hidden" id="datepicker" />  
</div>
<label for="from">From</label>
<input type="text" id="from" value="<?php echo $month."/".$day."/".$year; ?>" />
<label for="to">to</label>
<input type="text" id="to" value="<?php echo $month2."/".$day2."/".$year2; ?>" />               
<input type="submit" value="Filter" />
        </form>
               </p>
</div>     
<!--<h1><?php echo "$month/$day/$year - $month2/$day2/$year2" . ' <br/>'?></h1>-->
<?php
    if ( isset($get['institute']) && is_numeric( $get['institute'] )  ) {

        echo "<h2><center>" . $institute_cat . "</center></h2>";
    }

    if ( empty($entries) ) {
        echo "<h2><center>No articles found</center></h2>";
    }
    else {
?>  

使用Javascript:

<!-- javascript datepicker -->
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /></link>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://expeng.anr.msu.edu/css/sitewide/datepicker.css" />  </link>
<script type="text/javascript">
$(document).ready(function(){
    $('#from').datepicker({
        defaultDate: "+1w",
        changeMonth: true,
        numberOfMonths: 1,
        onSelect: function(dateText, inst) {
                //dateText comes in as MM/DD/YY
                var datePieces = dateText.split('/');
                var month = datePieces[0];
                var day = datePieces[1];
                var year = datePieces[2];
                //define select option values for
                $('select#month').val(month);
                $('select#day').val(day);
                $('select#year').val(year);
        },                  
    }); 
    $('#to').datepicker({
        defaultDate: "+1w",
        changeMonth: true,
        numberOfMonths: 1,
        onSelect: function(dateText, inst) {
                //dateText comes in as MM/DD/YY
                var datePieces = dateText.split('/');
                var month2 = datePieces[0];
                var day2 = datePieces[1];
                var year2 = datePieces[2];
                //define select option values for
                $('select#month2').val(month2);
                $('select#day2').val(day2);
                $('select#year2').val(year2);
         },     
    }); 
});
</script>   

http://msue.anr.msu.edu/news/report是网站,万一有人有兴趣自己查看问题。

提前致谢!

2 个答案:

答案 0 :(得分:1)

在代码的这一部分(注意第47行的for()循环):

    <select id="year" name="year" style="display:none"> 
<?php   
//lists years
            for ($i = 0; $i <= 3; ++$i)    // Try to change this to: for ($i = 0; $i <= 5; ++$i)
            {                 
                $time = strtotime(sprintf('-%d years', $i));
                $value = date('Y', $time);
                $label = date('Y', $time);  
//if year is set stay on that year          
                if($year==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);}         
            }

本节(注意第106行的for()循环):

    <select id="year2" name="year2" style="display:none">
<?php
//lists years
            for ($i = 0; $i <= 3; ++$i)    // Try to change this to: for ($i = 0; $i <= 5; ++$i) 
            {             
                $time = strtotime(sprintf('-%d years', $i));
                $value = date('Y', $time);
                $label = date('Y', $time);  
//if year is set stay on that year          
                if($year2==$value)
                    { printf('<option value="%s" selected="selected">%s</option>' , $value, $label);
                    }
                else
                    {printf('<option value="%s">%s</option>', $value, $label);}             
            }               
//first year selected instead of blank
  ?>

正在创建一个下拉选择,从当前年份到三年前一年。因此,当您指定年份之外(2010年之前)时,年份不是<select>框的一部分。同样适用于<select>的{​​{1}}。

如果您想支持更多年,只需将3的值更改为其他内容。

顺便说一句,尝试添加检查开始日期&lt; =结束日期。我试过了,虽然它没有给我任何错误,但它只显示没有结果,而不是说它是无效的日期范围。

答案 1 :(得分:0)

此时在代码中:

//create first and second dates for range
$t_current = mktime(0, 0, 0, $month, $day, $year); // Current month Unix timestamp
$t_next = mktime(0, 0, 0, $month2, $day2+1, $year2); // date2 unix timestamp for date range

我肯定会添加一个检查以确保$ t_next晚于$ t_current,因为这将是我要查找的第一个逻辑问题。

if($t_current>$t_next){
    // swap them over
    $tmp=$t_current;
    $t_current=$t_next;
    $t_next=$tmp;
}