zend google apiライブラリを使用して、公開カレンダーからイベントのリストを取得しています。title
、、、when
およびを正常に取得できますcontent
がwhere
、空の配列です。過去3時間にGoogle、Zend、またはその他の方法で見つけたドキュメントはひどいものであり、可能な値のリストはありません。イベントの場所について私が見つけることができる唯一のドキュメントは、イベントを作成している場合にそれを設定する方法です。
場所にアクセスするにはどうすればよいですか?
<?php
foreach ($eventFeed as $event) :
?>
<li>
<div class="event_title">
<?php echo $event->title->text;?>
</div>
<div class="event_time">
<?php echo date('h:ia', strtotime($event->when[0]->startTime));?>
</div>
<div class="event_location">
<?php echo $event->where?>
</div>
<div class="event_description">
<?php echo $event->content->text?>
</div>
</li>
<?php
endforeach;
?>