class SongInfo{ var $title; //曲名 var $album; //アルバム名 var $year; //アルバム発売年 function SongInfo( $t , $al , $y ){ $this->title = $t; $this->album = $al; $this->year = $y; } } $songlist = array( new SongInfo( "Across The Universe" , "Past Masters Vol.2" , "1988" ) , new SongInfo( "She Loves You" , "Past Masters Vol.1" , "1988" ), new SongInfo( "Across The Universe" , "Let It Be" , "1970" ), new SongInf