Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : ID3 Functions : id3_get_version

id3_get_version

Get version of an ID3 tag (PECL id3:0.1-0.2)
int id3_get_version ( string filename )

Example 975. id3_get_version() example

<?php
$version
= id3_get_version( "path/to/example.mp3" );
if (
$version & ID3_V1_0) {
   echo
"Contains a 1.x tag\n";
}
if (
$version & ID3_V1_1) {
   echo
"Contains a 1.1 tag\n";
}
if (
$version & ID3_V2) {
   echo
"Contains a 2.x tag\n";
}
?>

The above example will output something similar to:

Contains a 1.x tag
Contains a 1.1 tag

Change Language


Follow Navioo On Twitter
id3_get_frame_long_name
id3_get_frame_short_name
id3_get_genre_id
id3_get_genre_list
id3_get_genre_name
id3_get_tag
id3_get_version
id3_remove_tag
id3_set_tag
eXTReMe Tracker