Đây là vấn đề của bạn:
$temp[] = array('v' => date('D M d Y H:i:s O',$row['HireDate']));
Ngày phải được nhập ở định dạng chuỗi rất cụ thể:"Date(year, month, day, hours, minutes, seconds)"
, month
ở đâu là chỉ số dựa trên 0 cho tháng và mọi thứ sau month
là tùy chọn (mặc định là 1 cho day
và 0 cho mọi thứ khác). Để nhập ngày của bạn ở định dạng này, bạn nên làm như sau:
$date = date('D M d Y H:i:s O',$row['HireDate']));
$year = (int) date_format($date, 'Y');
$month = ((int) date_format($date, 'm')) - 1; // adjust to javascript's 0-indexed months
$day = (int) date_format($date, 'd');
$hours = (int) date_format($date, 'H');
$minutes = (int) date_format($date, 'i');
$seconds = (int) date_format($date, 's');
$temp[] = array('v' => "Date($year, $month, $day, $hours, $minutes, $seconds");