【发布时间】:2015-08-31 11:10:18
【问题描述】:
我刚刚在我的 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 类?
【问题讨论】: