たこ坪

私はタコになりたい

googleAPI googleカレンダー web

Calendar APIから日本の祝日を取得する

投稿日:2017年5月1日 更新日:

グーグルカレンダーAPIから
日本の祝日を取得して
一覧で表示する
<?php
$api_key = 'googleカレンダーAPIキー';
$holidays_id = 'japanese__ja@holiday.calendar.google.com';
$holidays_url = sprintf(
'https://www.googleapis.com/calendar/v3/calendars/%s/events?'.
'key=%s&timeMin=%s&timeMax=%s&maxResults=%d&orderBy=startTime&singleEvents=true',
$holidays_id,
$api_key,
$start_date,
$end_date,
30
);

if( $results = file_get_contents($holidays_url, true))
{
$results = json_decode($results);
$holidays = array();
foreach($results->items as $item)
{
$date = strtotime((string) $item->start->date);
$title = (string) $item->summary;
$holidays[date(‘Y-m-d’, $date)] = $title;
}
ksort($holidays);
}

 

https://jqueryui.com/datepicker/

とかと使えばよさげ

因みに休日は前後2年までしか取得できない模様

サンプルgoogleカレンダーAPI祝日

今月のカレンダー

 

-googleAPI, googleカレンダー, web

執筆者:


comment

メールアドレスが公開されることはありません。

関連記事

no image

エラー表示 .htaccess とphp 

.htaccessの場合 エラー出力しない php_flag display_errors “off” エラー出力する php_flag display_errors “on” .htaccessの場 …

QRコード作成

QRコード作成 Google Chart API 

QRコードとは(Quick Responseコード) マトリクス型2次元コードとして、1994年 株式会社デンソーウェーブにより開発されたやつ。 妖怪ウォッチとかでも使われてたかな。 Google C …

GeoIP2 IPアドレスから都道府県情報取得

GEOIP無料版 まずは http://dev.maxmind.com/ja/geolite2/ から GeoLite2 City GeoLite2 Country % gunzip GeoLite2 …

ckeditorとkcfinderで画像アップロードをラクにする

werdpressでおなじみのエディタckeditor。   ckeditor http://ckeditor.com/download kcfinder https://kcfinder. …

no image

googlemapはkey取得しないと表示されなくなった

googlemapはkeyを取得しないと マップが表示されなくなってひさしいが ぐぐってもAPIマネージャーまでたどり着けない、 ダッシュボードまでたどり着けない。 ので ログイン状態で↓クリック h …