a few words about web development

PHP Class: How to read ID3 v1 tag from mp3 files

Reading artists and song titles without external applications
To read Id3 v1 tag from any given mp3 file you can use the attached PHP class. Usage is very simple:
include 'Id3.php';

$i = new Id3;
$res = $i->read('music.mp3');

print_r($res);

Download (and don't forget to leave a comment!)

Comments

FranzHey, pretty cool and small php script that works perfect for me! Many thanks to you.