我有多个包含字符串的.m3u文件:
string1
string2 etc //(with the line break)
我想将此信息添加到一个文件中,但是当它到达文件末尾时,添加换行符。因为当我执行代码时它可以工作,但当它连接下一个文件时,我得到的结果如下:
string10
string11string12
string13
我想阻止这一点并将所有内容添加到新行。 代码如下:
<?PHP
//File path of final result
$longfilepath = "/var/lib/mpd/playlists/";
$filepathsArray = [$longfilepath."00's.m3u",$longfilepath."50's.m3u",$longfilepath."60's.m3u",$longfilepath."70's.m3u",$longfilepath."80's.m3u",$longfilepath."90's.m3u",$longfilepath."Alternative Rock.m3u",$longfilepath."Best Of Irish.m3u",$longfilepath."Blues.m3u",$longfilepath."Chart Hits.m3u",$longfilepath."Christmas.m3u",$longfilepath."Classic Rock.m3u",$longfilepath."Classical Opera.m3u",$longfilepath."Country.m3u",$longfilepath."Dance.m3u",$longfilepath."Disco.m3u",$longfilepath."Easy Listening.m3u",$longfilepath."Electric Rock.m3u",$longfilepath."Hard Rock.m3u",$longfilepath."Irish Country.m3u",$longfilepath."Jazz.m3u",$longfilepath."Live and Acoustic.m3u",$longfilepath."Love Songs.m3u",$longfilepath."Pop.m3u",$longfilepath."Rap and RnB.m3u",$longfilepath."Reggae.m3u",$longfilepath."Relaxation.m3u",$longfilepath."Rock and Roll.m3u",$longfilepath."Rock.m3u",$longfilepath."Soul.m3u",$longfilepath."Soundtracks.m3u",$longfilepath."Top Bands.m3u"];
$filepath = "mergedfiles.txt";
$out = fopen($filepath, "w");
//Then cycle through the files reading and writing.
foreach($filepathsArray as $file){
$in = fopen($file, "r");
while ($line = fgets($in)){
fwrite($out, $line."\n"); //My attempt to add new line (which works) but then adds an extra for those that dont need it.
}
fclose($in);
}
//Then clean up
fclose($out);
?>
我用:
fwrite($out, $line."\n");
然后我得到的结果如下:
string1
string2
string3
string4
string5
答案 0 :(得分:2)
在添加自己的换行符之前 - 删除所有可以包含trim
字符串的换行符(甚至是空行):
foreach($filepathsArray as $file){
$in = fopen($file, "r");
while ($line = fgets($in)) {
$line = trim($line);
if ($line) {
// if line is not empty - write it to a file
fwrite($out, $line . "\n");
}
}
fclose($in);
}
答案 1 :(得分:1)
这可能更容易:
$out = array();
foreach($filepathsArray as $file) {
$out = array_merge($out, file($file, FILE_IGNORE_NEW_LINES, FILE_SKIP_EMPTY_LINES));
}
file_put_contents($filepath, implode("\n", $out));
注意:您可能需要在\r\n
上内爆以查看某些Windows应用程序(如记事本)中的换行符。