1

我从相同的代码中获取 youtube 标题和 youtube 描述,但现在它不起作用我收到以下错误:

警告:DOMDocument::load() [domdocument.load]: http:// wrapper 在服务器配置中被 /home/colorsfo/public_html/zaroorat/admin/pages/addSongProcess.php 第 16 行的 allow_url_fopen=0 禁用

警告:DOMDocument::load(http://gdata.youtube.com/feeds/api/videos/Y7G-tYRzwYY) [domdocument.load]:无法打开流:在 /home/colorsfo/ 中找不到合适的包装器public_html/zaroorat/admin/pages/addSongProcess.php 在第 16 行

警告:DOMDocument::load() [domdocument.load]:I/O 警告:无法在 /home/colorsfo 中加载外部实体“http://gdata.youtube.com/feeds/api/videos/Y7G-tYRzwYY” /public_html/zaroorat/admin/pages/addSongProcess.php 第 16 行

..................................... 以下编码用于获取 Youtube 视频数据:

$url = "http://gdata.youtube.com/feeds/api/videos/".$embedCodeParts2[0]; $doc = new DOMDocument; @$doc->load($url); $title = $doc->getElementsByTagName("title")->item(0)->nodeValue; $videoDescription = $doc->getElementsByTagName("description")->item(0)->nodeValue;

它以前可以工作(此编码在本地服务器上工作正常,但在互联网上它不工作)但现在它不工作。请指导我如何解决此错误。谢谢你的时间。

4

3 回答 3

3

您的服务器的 allow_url_fopen 已禁用(我的也是如此)。我感觉到你的痛苦。这就是我所做的。

尝试使用cURL,但使用 YouTube 的 v2 api 以 json 格式返回您的数据。您可以通过将该数据附加到 url 的末尾来做到这一点。

?v=2&alt=json

您没有发布如何获取 YouTube ID,这可能是问题的一部分(尽管您的示例网址确实有效)。所以以防万一,我还发布了一个简单的函数来从 YouTube 视频 url 中检索 ID。

function get_youtube_id($url) {
    $newurl = parse_url($url);
    return substr($newurl['query'],2);
}

好的,现在假设您有视频 ID,您可以为要返回的每个字段运行以下函数。

// Grab JSON and format it into PHP arrays from YouTube.
// Options defined in the switch. No option returns entire array
// Example of what the returned JSON will look like, pretty, here:
// http://gdata.youtube.com/feeds/api/videos/dQw4w9WgXcQ?v=2&alt=json&prettyprint=true
function get_youtube_info ( $vid, $info ) {
    $youtube = "http://gdata.youtube.com/feeds/api/videos/$vid?v=2&alt=json";
    $ch = curl_init($youtube);
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $output = curl_exec($ch);
    curl_close($ch);

    //If $assoc = true doesn't work, try:
    //$output = json_decode($output, true);
    $output = json_decode($output, $assoc = true);

    //Add the ['feed'] in if it exists.
    if ($output['feed']) {
        $path = &$output['feed']['entry'];
    } else {
        $path = &$output['entry'];
    }

    //set up a switch to return various data bits to return.
    switch($info) {
        case 'title':
            $output = $path['title']['$t'];
            break;
        case 'description':
            $output = $path['media$group']['media$description']['$t'];
            break;
        case 'author':
            $output = $path['author'][0]['name'];
            break;
        case 'author_uri':
            $output = $path['author'][0]['uri'];
            break;
        case 'thumbnail_small':
            $output = $path['media$group']['media$thumbnail'][0]['url'];
            break;
        case 'thumbnail_medium':
            $output = $path['media$group']['media$thumbnail'][2]['url'];
            break;
        case 'thumbnail_large':
            $output = $path['media$group']['media$thumbnail'][3]['url'];
            break;
        default:
            return $output;
            break;
    }
    return $output;
}

$url = "http://www.youtube.com/watch?v=oHg5SJYRHA0";
$id = get_youtube_id($url);

echo "<h3><a href=" . $url . ">" . get_youtube_info($id, 'title') . "</a></h3>"; //echoes the title
echo "<p><a href=" . $url . "><img style='float:left;margin-right: 5px;' src=" . get_youtube_info($id, 'thumbnail_small') . " /></a>" . get_youtube_info($id, 'description') . "</p>"; //echoes the description
echo "<br style='clear:both;' /><pre>";
echo print_r(get_youtube_info($id));
echo "</pre>";
于 2012-12-09T10:43:10.917 回答
0

我希望现在还不算晚。我的解决方案是在您的 Linux 机器中编辑 /etc/resolv.conf:并将第一行替换为以下行:

名称服务器 8.8.8.8

然后保存文件。无需重新启动服务。

可能适用于出于安全考虑意外禁用某些功能的服务器。

于 2014-09-28T12:50:14.557 回答
0

DOMDocuments 的 load() 函数使用 PHP 的 fopen 包装器来检索文件。似乎在您的网络服务器上,allow_url_fopen设置为 0,因此禁用了这些包装器。尝试将以下行添加到脚本的顶部:

ini_set ('allow_url_fopen', 1);

更新:试试这个:

<?php
$url = "http://gdata.youtube.com/feeds/api/videos/" . $embedCodeParts2[0];

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$file = curl_exec($ch);

curl_close($ch);

$doc = new DOMDocument;
@$doc->loadHTML($file);
$title = $doc->getElementsByTagName("title")->item(0)->nodeValue;
$videoDescription = $doc->getElementsByTagName("description")->item(0)->nodeValue;
于 2012-05-11T12:55:37.787 回答