PHP Class: How to read ID3 v1 tag from mp3 files
Reading artists and song titles without external applications

include 'Id3.php';
$i = new Id3;
$res = $i->read('music.mp3');
print_r($res);
Download (and don't forget to leave a comment!)
Comments