phpで、xmlファイルを習得方法

file_get_contents()が、便利。

下記のコードで取得できそう。

<?php
$url = “http://www.ssf-dns01.com/seo/atom.xml”;
$rsp = file_get_contents($url);
print($rsp);
?>

後で、ちゃんと使ってみよう。