(PECL)
id3_get_genre_name() returns the name for a genre id.
In an ID3 tag, the genre is stored using a integer ranging from 0 to 147.
Пример 1. id3_get_genre_name() example
<?php$genre = id3_get_genre_name(20);echo $genre;?>
This will output:
Alternative
See also id3_get_genre_list() and id3_get_genre_id().