simplexmlを使用してYoutubeビデオURLからコンテンツxmlタグを読み取ろうとしていますが、属性関数を追加するとエラーが発生します:
非オブジェクトでメンバー関数 attributes() を呼び出す
PHP コード:
$xml = simplexml_load_file("http://gdata.youtube.com/feeds/api/videos/FS5uQpBp8XI/related?v=2");
$content = $xml->children("http://search.yahoo.com/mrss/")->group->content[0]->attributes();
$src = $content->url;
echo $src;