0
我在使用每週活動日程Weekly event calender傳遞一個JavaScript,PHP關聯數組周曆陣列
在這個演示中面臨的一個問題有過的事件靜態數組的代碼是:
function getEventData() {
var year = new Date().getFullYear();
var month = new Date().getMonth();
var day = new Date().getDate();
return {
events : [
{
"id":1,
"start": new Date(year, month, day, 12),
"end": new Date(year, month, day, 13, 30),
"title":"Lunch with Mike"
},
{
"id":2,
"start": new Date(year, month, day, 14),
"end": new Date(year, month, day, 14, 45),
"title":"Dev Meeting"
},
{
"id":3,
"start": new Date(year, month, day + 1, 17),
"end": new Date(year, month, day + 1, 17, 45),
"title":"Hair cut"
},
{
"id":4,
"start": new Date(year, month, day - 1, 8),
"end": new Date(year, month, day - 1, 9, 30),
"title":"Team breakfast"
},
]
};
}
我想這個數據來自使用PHP的MySQL。爲了這個,我寫PHP代碼
$query="Select id, start_time, end_time, title from calendar_events where status=1";
$result=mysql_query($query);
$count=mysql_num_rows($result);
$i=1;
while($row=mysql_fetch_array($result)) {
$myarray[] = array("id"=>$i,"start"=>$row['start_time'], "end"=>$row['end_time'], "title"=>$row['title']);
$i++;
}
我得到JavaScript中的數組爲:
<script>
var myarr = <?php echo json_encode($myarray); ?>;
</script>
現在我想在日曆這個數據。我嘗試了很多方法,但無法取得成功。 請幫忙。
感謝@ Jacko07 ......我試過,但它顯示我語法錯誤 –
確定。試試這個:json_encode(array('events'=> $ myarray)) – Jacko07
對不起。你應該這樣做: json_encode(array(array('events'=> $ myarray))) – Jacko07