0

我有 PHP 循环,可以从 Youtube 频道中的特定播放列表中提取视频信息,但在遇到私人视频时会中断。它给出了一个致命错误:

警告:main() [function.main]:第 30 行的 F:\xampp\htdocs\youtube\index.php 中不再存在节点

警告:main() [function.main]:第 30 行的 F:\xampp\htdocs\youtube\index.php 中不再存在节点

致命错误:在第 35 行对 F:\xampp\htdocs\youtube\index.php 中的非对象调用成员函数 attributes()

代码如下

<body>
<div id="mainPlayer" width="425" height="344">
</div>
</div>
<div id="mainPlaylist" class="grid_6 omega">
<h3 class="title">Legal Feed with Kate Wheeler</h3>
<ul id="playlists">
<?php
// Loop through each video in each playlist

    // read feed into SimpleXML object
    // *Moved into header to load main Video as well
$playlistFeedURL = 'http://gdata.youtube.com/feeds/api/playlists/6549D4CA7BB99B16?v=2';
    $sxml = simplexml_load_file($playlistFeedURL);
    
    // iterate over entries in feed
    foreach ($sxml->entry as $entry) {
      // get nodes in media: namespace for media information
      $media = $entry->children('http://search.yahoo.com/mrss/');
      
      // get video player URL
      $attrs = $media->group->player->attributes();
      $watch = $attrs['url'];
      
       
      
      // get video thumbnail
      $attrs = $media->group->thumbnail[0]->attributes();
      $thumbnail = $attrs['url'];
            
      // get <yt:duration> node for video length
      $yt = $media->children('http://gdata.youtube.com/schemas/2007');
      $attrs = $yt->duration->attributes();
      $length = $attrs['seconds'];
      
      //get <yt:videoId> node for Video ID
      $yt = $media->children('http://gdata.youtube.com/schemas/2007');
      $playlistVideoID = $yt->videoid;
      
      
      // get <yt:stats> node for viewer statistics
      $yt = $entry->children('http://gdata.youtube.com/schemas/2007');
      $attrs = $yt->statistics->attributes();
      $viewCount = $attrs['viewCount'];
      
      // get <gd:rating> node for video ratings
      $gd = $entry->children('http://schemas.google.com/g/2005');
      if ($gd->rating) {
        $attrs = $gd->rating->attributes();
        $rating = $attrs['average'];  
      } else {
        $rating = 0;
      }
     
      
      ?>
      <div class="item">
          <span class="thumbnail left" rel="<?php echo $entry->id; ?>">
            <a href="<?php echo $watch; ?>" rel="<?php echo $playlistVideoID; ?>" onclick="_run();"><img src="<?php echo $thumbnail;?>" /></a>
          </span>
             <a href="<?php echo $watch; ?>" rel="<?php echo $playlistVideoID; ?>" onclick="_run();"><?php echo $media->group->title; ?></a>
          <span class="attr">Duration:</span> <?php printf('%0.2f', $length/60); ?> min.
          <div class="clear"></div>
      </div>      
    <?php
    }
?>
</ul> 
</body>

请帮我。提前致谢。

4

1 回答 1

0

您可能正在使用 DOM 将 html 从 Youtube 中分离出来?对此表示敬意,但假设所有节点一直都在那里,例如

$nodes = $dom->getElementsByTagName('video');
$nodes[0]->attribute(....);  #<---but whatever if there's no video elements at all?


if ($nodes->length > 0) {
  $nodes[0]->attribute(...); #<--only does this if there was at least one video element
}
于 2012-11-14T19:06:37.570 回答