json-events.php 383 B

12345678910111213141516171819202122232425
  1. <?php
  2. $year = date('Y');
  3. $month = date('m');
  4. echo json_encode(array(
  5. array(
  6. 'id' => 111,
  7. 'title' => "Event1",
  8. 'start' => "$year-$month-10",
  9. 'url' => "http://yahoo.com/"
  10. ),
  11. array(
  12. 'id' => 222,
  13. 'title' => "Event2",
  14. 'start' => "$year-$month-20",
  15. 'end' => "$year-$month-22",
  16. 'url' => "http://yahoo.com/"
  17. )
  18. ));
  19. ?>