本文整理汇总了PHP中Zend_Gdata_YouTube_VideoEntry::getVideoTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Gdata_YouTube_VideoEntry::getVideoTitle方法的具体用法?PHP Zend_Gdata_YouTube_VideoEntry::getVideoTitle怎么用?PHP Zend_Gdata_YouTube_VideoEntry::getVideoTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Gdata_YouTube_VideoEntry
的用法示例。
在下文中一共展示了Zend_Gdata_YouTube_VideoEntry::getVideoTitle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: echoVideoMetadata
/**
* Echo video metadata
*
* @param Zend_Gdata_YouTube_VideoEntry $entry The video entry
* @return void
*/
function echoVideoMetadata($entry)
{
$title = htmlspecialchars($entry->getVideoTitle());
$description = htmlspecialchars($entry->getVideoDescription());
$authorUsername = htmlspecialchars($entry->author[0]->name);
$authorUrl = 'http://www.youtube.com/profile?user=' . $authorUsername;
$tags = htmlspecialchars(implode(', ', $entry->getVideoTags()));
$duration = htmlspecialchars($entry->getVideoDuration());
$watchPage = htmlspecialchars($entry->getVideoWatchPageUrl());
$viewCount = htmlspecialchars($entry->getVideoViewCount());
$rating = 0;
if (isset($entry->rating->average)) {
$rating = $entry->rating->average;
}
$numRaters = 0;
if (isset($entry->rating->numRaters)) {
$numRaters = $entry->rating->numRaters;
}
$flashUrl = htmlspecialchars(findFlashUrl($entry));
print <<<END
<b>Title:</b> {$title}<br />
<b>Description:</b> {$description}<br />
<b>Author:</b> <a href="{$authorUrl}">{$authorUsername}</a><br />
<b>Tags:</b> {$tags}<br />
<b>Duration:</b> {$duration} seconds<br />
<b>View count:</b> {$viewCount}<br />
<b>Rating:</b> {$rating} ({$numRaters} ratings)<br />
<b>Flash:</b> <a href="{$flashUrl}">{$flashUrl}</a><br />
<b>Watch page:</b> <a href="{$watchPage}">{$watchPage}</a> <br />
END;
}
示例2: testGetVideoTitle
public function testGetVideoTitle()
{
$this->entry->transferFromXML($this->entryText);
$videoEntry = $this->entry;
$this->assertEquals('"Crazy (Gnarles Barkley)" - Acoustic Cover', $videoEntry->getVideoTitle());
$newEntry = new Zend_Gdata_YouTube_VideoEntry();
$this->assertEquals(null, $newEntry->getVideoTitle());
}