安裝

安裝此 PECL 擴充功能的訊息可在手冊中標題為 PECL 擴充功能安裝的一章中找到。 更多訊息如新版本,下載,原始文件,維護者訊息以及更新日誌等可以在這裡找到: » http://pecl.php.net/package/id3.

PECL 擴充功能的 DLL 目前不可用。參閱 在 Windows 上建立章節。

add a note add a note

User Contributed Notes 1 note

up
-37
kamil at rajkowski dot net
10 years ago
Due to API change in PHP 5.4 you have to make change in "id3.c"

Have to change in line 196:
function_entry id3_functions[] = {
into
zend_function_entry id3_functions[] = {

Without it you won't be able to install id3 extension.
To Top