我想獲取視頻條目的評論數,但是在沒有評論時,這給了我1的計數。有任何想法嗎?YouTube API視頻條目數量評論
<?php
$commentFeed = $yt->getVideoCommentFeed($videoID);
if (count($commentFeed) > 0)
{
foreach ($commentFeed as $commentEntry)
{
// print commentEntry
}
}
?>