vote up 0 vote down star

I am trying to get the comment count for a video entry but this is giving me a count of 1 when there are no comments. Any ideas?

<?php
    $commentFeed = $yt->getVideoCommentFeed($videoID);
    if ( count($commentFeed) > 0 )
    {
        foreach ($commentFeed as $commentEntry)
        {
            // print commentEntry
        }
    }
 ?>
flag

25% accept rate

1 Answer

vote up 0 vote down

I'm not familiar with the PHP version of the API (I've only used the Python one) but I am pretty sure your issue is that when you get $commentFeed, it is returning the full comment feed XML. This includes a root element named <feed> with a bunch of <entry> elements.

So, what you should probably be doing is checking to see if entry within $commentFeed is greater than zero or exists.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.