【发布时间】:2023-04-09 13:30:01
【问题描述】:
使用此代码:
$mp3_tags= id3_get_tag($mp3_file);
printr($mp3_tags);
但调用未定义函数时出错,搜索并发现我必须为 PHP 启用 ID3 扩展,而我在 windows 上卡住了。
【问题讨论】:
使用此代码:
$mp3_tags= id3_get_tag($mp3_file);
printr($mp3_tags);
但调用未定义函数时出错,搜索并发现我必须为 PHP 启用 ID3 扩展,而我在 windows 上卡住了。
【问题讨论】:
手册shows how to install and this extension(以及所有其他标准手册)。
不幸的是,它是not available as a compiled DLL on Windows。如果您愿意,可以compile it。
【讨论】: