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.
<?php
$genre = id3_get_genre_name(20);
echo $genre;
?>
This will output:
Alternative
See also id3_get_genre_list() and id3_get_genre_id().