PHP 在 .m3u 文件中验证 file_exists

问题描述

我有一个 .m3u 文件,我正在尝试验证每一行以验证路径上的 file_exists。 这是一行:

/home/scott/Music/Whitesnake/Whitesnake (30th anniversary edition)/1-01 Still of the Night.mp3

我的代码看起来是正确的,但脚本无法运行,因为我已经验证了文件存在。我已经在谷歌上搜索过、堵嘴、堆叠过并被打过,但我正在寻找解决方案。

先谢谢你教我...

$Jarvis  = new JarvisAPI(); // my api helper class
$m3uFile = $Jarvis->loadMainList();

array_shift( $m3uFile ); // lose the first line 

echo $Jarvis->getCount( $m3uFile ) . ' songs in list.<br/>'; 

foreach( $m3uFile as $idx => $filenamepath )
{
   if(file_exists($filenamepath)){
       echo "Exists - ";
   }else{
       echo "Not found - ";
   }

   echo $filenamepath;         
   echo "<br/>";
}

示例结果:

1116 songs in list.
Not found - /home/scott/Music/Whitesnake/Whitesnake (30th anniversary edition)/1-01 Still of the Night.mp3
Not found - /home/scott/Music/Bob Marley - The Very Best Of Bob Marley & The Wailers(2001)/Bob Marley & The Wailers - Get Up,Stand Up.mp3
Not found - /home/scott/Music/CAKE/UnkNown Album/Sheep Go To Heaven.mp3

当我尝试对路径进行硬编码时,它可以工作:

$sample = '/home/scott/Music/Whitesnake/Whitesnake (30th anniversary edition)/1-01 Still of the Night.mp3';

if (file_exists($sample) ) echo filesize($sample);

输出:11736600

解决方法

基于 Windows 系统,mp3 文件位于 C 盘并使用以下 m3u 播放列表文件内容作为 playlist.m3u

#EXTM3U
#EXTINF:261,Lou Reed & Metallica - Brandenburg Gate
\data\Archives\Music\Rips\Lou Reed & Metallica - Lulu [Disc 1]\01 - Lou Reed & Metallica - Brandenburg Gate.mp3
#EXTINF:320,Lou Reed & Metallica - The View
\data\Archives\Music\Rips\Lou Reed & Metallica - Lulu [Disc 1]\02 - Lou Reed & Metallica - The View.mp3
#EXTINF:444,Lou Reed & Metallica - Pumping Blood
\data\Archives\Music\Rips\Lou Reed & Metallica - Lulu [Disc 1]\03 - Lou Reed & Metallica - Pumping Blood.mp3
#EXTINF:412,Lou Reed & Metallica - Mistress Dread
\data\Archives\Music\Rips\Lou Reed & Metallica - Lulu [Disc 1]\04 - Lou Reed & Metallica - Mistress Dread.mp3
#EXTINF:277,Lou Reed & Metallica - Iced Honey
\data\Archives\Music\Rips\Lou Reed & Metallica - Lulu [Disc 1]\05 - Lou Reed & Metallica - Iced Honey.mp3
#EXTINF:686,Lou Reed & Metallica - Cheat On Me
\data\Archives\Music\Rips\Lou Reed & Metallica - Lulu [Disc 1]\06 - Lou Reed & Metallica - Cheat On Me.mp3



<?php

    $root='c:';
    
    $file=__DIR__ . '/playlist.m3u';
    
    $lines=file( $file );
    
    for( $i=2; $i < count( $lines ); $i+=2 ){
        
        $line=$lines[ $i ];
        $path=trim( $root . $line );
        
        printf( '<div>%s</div>',file_exists( $path ) ? sprintf('The file "%s" does exist!!!',basename($path)) : sprintf('Bogus - the file "%s" cannot be found',basename($path)) );
    }
?>

这产生了以下内容:

enter image description here

如果没有在 trim 变量上使用 $path 这会失败,所以您或许应该尝试从 $filenamepath 变量中删除尾随空格?!