-8

但是,如果我将时间更改为凌晨 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 "]";
  }
4

1 回答 1

1

谢谢迈克,当我发布我的代码时,我注意到导致问题的错误。问题出在我的 json.php.... 很抱歉浪费了董事会的时间。

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

于 2010-05-20T15:39:47.817 回答