id3_get_genre_name

(PECL id3 >= 0.1)

id3_get_genre_nameGet the name for a genre id

설명

string id3_get_genre_name ( int $genre_id )

id3_get_genre_name() returns the name for a genre id.

인수

genre_id

An integer ranging from 0 to 147

반환값

Returns the name as a string.

예제

Example #1 id3_get_genre_name() example

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

위 예제의 출력:

Alternative

참고

add a note add a note

User Contributed Notes

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