id3_get_genre_name

(PECL id3 >= 0.1)

id3_get_genre_nameGet the name for a genre id

Opis

id3_get_genre_name ( int $genre_id ) : string

id3_get_genre_name() returns the name for a genre id.

Parametry

genre_id

An integer ranging from 0 to 147

Zwracane wartości

Returns the name as a string.

Przykłady

Przykład #1 id3_get_genre_name() example

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

Powyższy przykład wyświetli:

Alternative

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top