JavaScript Editor Javascript debugger     Website design 


id3_get_genre_name

Get the name for a genre id (PECL id3:0.1-0.2)
string id3_get_genre_name ( int genre_id )

id3_get_genre_name() returns the name for a genre id.

Parameters

genre_id

An integer ranging from 0 to 147

Return Values

Returns the name as a string.

Examples

Example 972. id3_get_genre_name() example

<?php
$genre
= id3_get_genre_name(20);
echo
$genre;
?>

The above example will output:

Alternative