Как получить запись totalResults из API видео YouTube - PullRequest
2 голосов
/ 19 мая 2010

Я использую PHP и API YouTube для передачи видео с YouTube для передачи в мое веб-приложение, но я не знаю, как получить запись totalResults

Вот мой код:

$yt = new Zend_Gdata_YouTube();
$query = $yt->newVideoQuery();
$query->setQuery($searchTerm);
$query->setStartIndex($startIndex);
$query->setMaxResults($maxResults);
$feed = $yt->getVideoFeed($query);

echo $feed->totalResults; // this desn't work

1 Ответ

0 голосов
/ 19 мая 2010

Сам элемент защищен; вам нужно использовать getTotalResults accessor:

echo $feed->getTotalResults();
...