2025-05-28 14:26:49 +09:00

108 lines
2.2 KiB
PHP

<?php
header('Content-Type: application/json');
$events = [
[
"title" => "완료",
"start" => "2024-07-01",
"editable"=> false,
"color" => "blue"
],
[
"start" => "2024-07-03",
"editable"=> false,
"backgroundColor"=>'red',
],
[
"title" => "완료",
"start" => "2024-07-05",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-10",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-11",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-12",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-13",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-14",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-16",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-17",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-18",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-19",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-20",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-07-30",
"editable"=> false,
"color" => "blue"
],
[
"title" => "완료",
"start" => "2024-08-01",
"editable"=> false,
"background" => "blue",
"borderColor"=> "red",
],
[
'id' => "10",
"display" => "background",
"start" => "2024-08-02",
"editable"=> false,
"color"=> "red",
],
];
// JSON 형식으로 데이터를 출력
echo json_encode($events);
?>