在上午12:00至上午12:30创建活动时,它会显示为全天活动

时间:2010-05-20 14:25:07

标签: jquery fullcalendar

但是,如果我将时间更改为凌晨12:00至凌晨1:00,则会在时段中呈现,而不是全天活动?不知道发生什么事了!

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname);
$query = "select id,class_name,bridge,start_time,end_time from $table";
$results= mysql_query($query,$conn);
$total = mysql_num_rows($results);

if ($total > 0) {
    // Start a JSON object called "property" which will be an array of resort properties from around the globe.
    echo "[" ;

    $counter = 0;
    while ($item = mysql_fetch_object($results)) {

        list($date, $time) = explode(' ', $item->start_time);
        list($year, $month, $day) = explode('-', $date);
        list($hour, $minute, $second) = explode(':', $time);
        $s_timestamp = mktime($hour, $minute, $second, $month, $day, $year);

        list($date, $time) = explode(' ', $item->end_time);
        list($year, $month, $day) = explode('-', $date);
        list($hour1, $minute1, $second) = explode(':', $time);
        $e_timestamp = mktime($hour1, $minute1, $second, $month, $day, $year);

        #if ( $hour > 0 ) {
        #$a_day = 'false';
        #} else {
        #$a_day = 'true';
        #  }

        if ( $hour == 0 && $hour1 == 0 && $minute == 0 && $minute1 == 0 ){
        $a_day = 'true';
        } else {
        $a_day = 'false';
          }


        echo "{'id':$item->id, 'className':'$item->class_name', 'title':'$item->bridge', 'start':'$s_timestamp', 'end':'$e_timestamp', 'allDay':$a_day}";

        $counter++;

        if ($counter < $total) { echo ", "; }
    }

    echo "]";
  }

1 个答案:

答案 0 :(得分:1)

感谢Mike,当我发布我的代码时,我注意到导致问题的bug。问题发生在我的json.php中....抱歉浪费了时间。

我需要在设置allday标签时改变我查看小时和分钟的方式。你可以看到我在哪里注释了错误的代码。

相关问题