PHP の「simplexml_load_file」を使用して、Flickr からデータを取得しています。
私の目標は、写真のURLを取得することです。
次の値を取得できます(PHP変数に割り当てられます):
<p><a href="http://www.flickr.com/people/19725893@N00/">codewrecker</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/19725893@N00/2302759205/" title="Santa Monica Pier"><img src="http://farm3.static.flickr.com/2298/2302759205_4fb109f367_m.jpg" width="180" height="240" alt="Santa Monica Pier" /></a></p>
この部分だけを抽出するにはどうすればよいですか?
http://farm3.static.flickr.com/2298/2302759205_4fb109f367_m.jpg
念のため、私が使用しているコードは次のとおりです。
<?php
$xml = simplexml_load_file("http://api.flickr.com/services/feeds/photos_public.gne?id=19725893@N00&lang=en-us&format=xml&tags=carousel");
foreach($xml->entry as $child) {
$flickr_content = $child->content; // gets html including img url
// how can I get the img url from "$flickr_content"???
}
?>