0

我正在尝试使用 PHP 将文件夹中的多个文件分组到播放列表中。所以,我正在使用这段代码来查找具有不同格式的视频文件并将其分组为一个名称,但它不起作用。

$path = realpath(dirname(__FILE__)) . "/vidd";
    echo $path;
    $dir_handle = @opendir($path);
    while (FALSE != ($file2 = readdir($dir_handle))) {
        if ($file2 != '.' && $file2 != '..') {
            if (strstr($file2, ".mp4") || strstr($file2, ".webm") || strstr($file2, ".flv") || strstr($file2, ".3gp")) {

                $fileNamepart = explode(".", $file2);
                while (FALSE != ($file3 = readdir($dir_handle))) {
                    if ($file3 != '.' && $file3 != '..') {
                        if (strstr($file3, ".mp4") || strstr($file3, ".webm") || strstr($file3, ".flv") || strstr($file3, ".3gp")) {

                            $fileNamepart1 = explode(".", $file3);
                            if (stristr($fileNamepart[0], $fileNamepart1[0])) {
                                echo $file3;
                            }


                        }
                    }
                }
            }
        }
    }

在 Vidd 目录中存在这些文件。

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [480p].flv

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [240p].flv

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [144p].3gp

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [720p].mp4

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [360p].webm

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [360p].flv

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [720p].webm

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [360p].mp4

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [240p].3gp

▶ Crysis 3 - CryEngine3 技术预告片 - YouTube [480p].webm

我的视频.mp4

turisas_interview.flv

我的视频.mp4

我如何将这些文件分组到一个播放列表中,它将只显示文件的名称而不是特定的格式。所以从上面的文件列表中,程序应该生成这个:

▶ Crysis 3 - CryEngine3 技术预告片

我的视频.mp4

turisas_interview.flv

我的视频.mp4。

然后我会列出一个ul清单。然后将原始文件提供Video.js给浏览器查看。任何人都可以帮我解决这个问题,我正在努力,但找不到一个简单的方法来做到这一点。

4

0 回答 0