代码之家  ›  专栏  ›  技术社区  ›  Catfish

有时内容加载,有时不加载

  •  0
  • Catfish  · 技术社区  · 14 年前

    我有下面和网站上的脚本 http://cacrochester.com ,有时右边栏的内容会被加载,有时不会加载。我想如果这是你在一个页面上的头几次,它会说没有安排任何事件。

    我完全搞不明白为什么会发生这种事。数据库中的数据没有更改。

    如果您需要我再发布代码,请通知我。

    谢谢你的帮助!

    <?php
    
                $dummy = 0;
                $headingLength = 0;
                $descriptionLength = 0;
                $shortHeading = 0;
                $shortDescription = 0;
                $todayYear = date('Y');
                $todayMonth = date('m');
                $todayDay = date('d');
                $events = new dates();
                $noEvents = 0;
    
                //get the number of upcoming events
                $numEvents = $events->getNumberEvents();
    
                //get the actual events
                $results = $events->getRows();
    
                //used if there are not at least 5 events to fill up the event scroller
                switch($numEvents) {
                    case 1: $dummy = 4; break;
                    case 2: $dummy = 3; break;
                    case 3: $dummy = 2; break;
                    case 4: $dummy = 1; break;
                }
    
                //loops through all of the events in the table and adds them to the list
                foreach($results as $result) 
                {   
                    $strippedHeading = stripslashes($result['heading']);
                    $strippedDescription = stripslashes($result['description']);
                    $headingLength = strlen($strippedHeading);
                    $descriptionLength = strlen($strippedDescription);
                    $shortHeading = $strippedHeading;
                    $shortDescription = $strippedDescription;
                    $time = strftime("%l:%M %P", $result['time']);
                    $location = $result['location'];
                    $startDate = getdate($result['start_date']);
                    $today = getdate();
    
                    //if the events are NOT in the past...          
                    if($startDate >= $today)
                    {       
                        //if we are at the end of the array, add the class 'last' to the li
                        if(current($result) == end($result)) 
                        {
                            echo "<li class=\"last\"><a href=\"Calendar.php\"><h4>".$shortHeading."</h4><h6>$time</h6><h6>$location</h6></a></li>".PHP_EOL;
                        } 
                        else 
                        {
                            echo "<li><a href=\"Calendar.php\"><h4>".$shortHeading."</h4><h6>$time</h6><h6>$location</h6></a></li>".PHP_EOL;
                        }                   
                        $noEvents = 1; 
                    }   
    
                    //if there is not at least 5 events, it repeats the events in the list until there are 5 total
                    elseif($dummy > 0 && $numEvents > 0) 
                    {                   
                        //if the events are NOT in the past...
                        if($startDate >= $today) 
                        {   
                            //if we are at the end of the array, add the class 'last' to the li
                            if($dummy == 0) 
                            {
                                echo "<li class=\"last\"><a href=\"Calendar.php\"><h4>".$shortHeading."</h4> ".$shortDescription."</a></li>".PHP_EOL;  
                                $dummy--;
                            } 
                            else 
                            {
                                echo "<li><a href=\"Calendar.php\"><h4>".$shortHeading."</h4> ".$shortDescription."</a></li>".PHP_EOL;  
                                $dummy--;
                            }
    
                            //if we have 5 events, do not add anymore
                            if($dummy < 0) 
                            {
                                break;
                            }
                        }
    
                        $noEvents = 1;
                    }  
                }
    
                //if there are no events, display the no events message
                if($noEvents == 0)
                {
                    echo "<li class=\"last\"><a href=\"Calendar.php\"><h4>No Events Scheduled</h4></a></li>".PHP_EOL;  
                }
                ?>
    
    1 回复  |  直到 14 年前
        1
  •  1
  •   casablanca    14 年前

    当你这样做的时候 $startDate >= $today 您试图比较两个数组,这不是一个好主意。只需使用简单的时间戳,它就可以正常工作:

    $startDate = $result['start_date'];
    $today = strtotime('today');
    

    此外,我不确定这是否是一个打字错误: current($result) == end($result) 但不是吗 $results ,哪个是数组名?