我正在尝试获取视频条目的评论计数,但是当没有评论时,这给了我 1 的计数。有任何想法吗?
<?php
$commentFeed = $yt->getVideoCommentFeed($videoID);
if ( count($commentFeed) > 0 )
{
foreach ($commentFeed as $commentEntry)
{
// print commentEntry
}
}
?>