0

我有这个链接

http://gdata.youtube.com/feeds/api/users/gudjondaniel/uploads?max-results=1

这给了我来自 GudjoDaneel 的最新视频,但我想在 PHP 文件中打印我们的这个标题

<title type='text'>The GD Project S3 | NEVER GIVE UP! | Division 1</title><content type='text'>

如果有人可以帮助我从哪里开始,我将不胜感激。还有我能查到的。

4

1 回答 1

1

我建议查找 SimpleXML。一旦你掌握了它的窍门,它就很容易使用,你只需四行就可以得到标题:

$url    = 'http://gdata.youtube.com/feeds/api/users/gudjondaniel/uploads?max-results=1';
$source = file_get_contents($url);
$xml    = new SimpleXMLElement($source);
$title  = $xml->entry->title;

但请注意,$title在这种情况下,这是一个 PHP 对象。如果你直接回显它,它会被重新解释为一个字符串,一切都会好起来的。如果您打算用它做任何其他事情,您需要将其转换为字符串,如下所示:

$title = strval($title);
于 2013-06-18T17:08:54.790 回答