我刚刚在Debian服务器上安装了getid3:
apt-get install php-getid3
如何在我的网站上使用它?
我读到我可以这样使用它:
require_once('getid3/getid3.php');
$getID3 = new getID3;
$path = 'sample.mp3';
$mixinfo = $getID3->analyze( $path );
但我不知道位于哪里的getid3.php
需要它。我如何使用这个php类?
必须包含从http://sourceforge.net/projects/getid3/?source=navbar下载的文件在您的web项目中的一个文件夹中,然后您可以使用库中的代码,我建议您先查看示例。