我刚刚在我的 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 类?