PHP Class: How to read ID3v2 tags from mp3 files
Squeezing information out of songs

include 'Id3v2.php';
$i = new Id3v2;
$res = $i->read('music.mp3');
print_r($res);
Below you can download the class:
Like it? Leave a reply! Thanks!
include 'Id3v2.php';
$i = new Id3v2;
$res = $i->read('music.mp3');
print_r($res);
Comments