Obtenha o atributo XML com SimpleXML

Estou tentando pegar o$xml->entry->yt:statistics->attributes()->viewCount atributo, e eu tentei algumas coisas com o SimpleXML, e eu realmente não consigo trabalhar!

Tentativa # 1

<?php
$xml = simplexml_load_file("http://gdata.youtube.com/feeds/api/videos?author=Google");
echo $xml->entry[0]->yt:statistics['viewCount'];
?>

Tentativa # 2

<?php
$xml = simplexml_load_file("http://gdata.youtube.com/feeds/api/videos?author=Google");
echo $xml->entry[0]->yt:statistics->attributes()->viewCount;
?>

Ambos retornam em branco, embora o SimpleXML esteja funcionando, tentei obter o título do feed, o que funcionou!

Alguma ideia?

Eu olhei para muitos outros exemplos em SO e outros sites, mas de alguma forma isso não está funcionando? PHP reconhece o ':' para ser um corte, ou eu estou apenas fazendo algo estúpido?

Obrigado, qualquer resposta muito apreciada!

questionAnswers(3)

yourAnswerToTheQuestion