I use PHP "simplexml_load_file" to get some data from Flickr.
My goal is to get the url of the photo.
I can get the following value (assigned to a PHP variable):
<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>
How can I extract only this part?
http:
Just in case this helps, here is the code I'm working with:
<?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;
}
?>
source
share