Código PHP:
foreach($image->attributes as $attri){
$url = $attri->url;
echo $url;
echo "<br>";
}
Debería ser algo así
Código PHP:
foreach($image->attributes() as $attri =>$attri_val){
if($attri == 'url') echo $attri_val;
echo "<br>";
}
O bien
Código PHP:
echo $images->attributes()->url;
echo '<br>';
(Así no recorres toooooodos los attributos q tenga!)
Info:
Attributes