1

我正在尝试在我的本地 XAMPP 设置中获取视频持续时间。我刚刚下载了 getID3 zip 并将其添加为:

include_once($base_url . '/getid3/getid3/getid3.php');
$getID3 = new getID3;
$file = $getID3->analyze($filepath);

但它呈现以下错误:

Fatal error</b>:  Class 'getID3' not found

我需要在 PHP 端启用任何库吗?

4

1 回答 1

1

尝试这个。另外请检查类文件是否存在于那里......

<?php

include_once(dirname(__FILE) . '/getid3/getid3/getid3.php');
$getID3 = new getID3;
$file = $getID3->analyze($filepath);

?>
于 2018-06-02T06:39:26.413 回答