simplexml_load_fileでfeedを取得

<?php

//今回は直接ファイル指定
$url='./atom.xml';

//これらのパラメータはよく調べてない
$xml = simplexml_load_file($url, 'SimpleXMLElement', LIBXML_NOCDATA);

//エントリタイトルは$xml->entry[番号]->title
//オーサーは$xml->entry[番号]->author->name
//リンクは$link = $xml->entry[番号]->link->attributes()としてから$link[href]
$link = $xml->entry[0]->link->attributes();
print '<a href="' . $link[href] . '">' . $xml->entry[0]->title . ' ( ' . $xml->entry[0]->author->name .' ) </a><br />';

?>