<?php 
$xml = simplexml_load_file(".xml dosyası url'si burada olacak");
foreach ($xml->image as $key) {
    echo $key->src."<br>";
}
?>