我目前正在尝试将 Google Docs 实施到网站。顺便说一句,我正在使用 Zend Framework,我正在使用 Zend GDocs API。
我的问题是 -我怎样才能获得任何文件和文档的文件扩展名?获取文件列表没问题,但我也确实需要文件扩展名。
$docs = new Zend_Gdata_Docs($client);
$feed = $docs->getDocumentListFeed($url);
$this->view->feed = $feed;
foreach($this->feed as $item) {
echo $item->getTitle();
}
感谢您的帮助和时间。
史蒂芬