Ben bir YouTube arama besleme ayrıştırmak SimpleXML kullanıyorum. Ben bir dönem için arama yaptıktan sonra yem ilk sonuç almak istiyorum. Şu anda benim kod şöyle görünür:
set_time_limit(0);
// Include needed files
require_once "config.php";
$xml = simplexml_load_file('http://gdata.youtube.com/feeds/base/videos?q=V.I.P.+KE%24HA&client=ytapi-youtube-search&v=2');
print_r($xml->entry[0]->link);
Yukarıdaki kod için çıktı:
SimpleXMLElement Object
(
[@attributes] => Array
(
[rel] => alternate
[type] => text/html
[href] => http://www.youtube.com/watch?v=TveGAmLdn8k&feature=youtube_gdata
)
)
Nasıl "href" değeri alabilirim?
Teşekkür ederim.