- PHP 手册
- 函数参考
- 音频格式操作
- ID3
- ID3 函数
id3_get_genre_id
(PECL id3 >= 0.1)
id3_get_genre_id — Get the id for a genre
说明
id3_get_genre_id ( string$genre
) : int
id3_get_genre_id() returns the id for a genre.
参数
-
genre
-
Genre name as string.
返回值
The genre id or FALSE
on errors.
范例
Example #1 id3_get_genre_id() example
<?php
$id = id3_get_genre_id("Alternative");
echo $id;
?>
以上例程会输出:
20
参见
- id3_get_genre_name() - Get the name for a genre id
- id3_get_genre_list() - Get all possible genre values
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/function.id3-get-genre-id.php