ぐるなびAPIとXML

とりあえず、近所3KMにあるカフェをリストできるようにする。
うまくいくと楽しい。

パースしたものを配列にいれる。

...
$xml = file_get_contents($url);
$options = array(
XML_UNSERIALIZER_OPTION_ATTRIBUTES_PARSE => 'parseAttributes'
);
$unserializer = new XML_Unserializer($options);
$unserializer->unserialize($xml);
$result = $unserializer->getUnserializedData();
...

こんな感じで出力の準備。

...
$name=$result["rest"][$i]["name"];
$lat=$result["rest"][$i]["latitude"];
$lon=$result["rest"][$i]["longitude"];
...