<?php
$xml 
= new SimpleXMLElement(file_get_contents('sushi.xml'));

foreach (
$xml->fish as $fish) {
    echo 
$fish['name'].'<br />';
}
?>