gpt4 book ai didi

php - 如何在 php 中到达特定行后写入新文件

转载 作者:搜寻专家 更新时间:2023-10-31 21:49:07 26 4
gpt4 key购买 nike

我正在尝试编写一个 php 脚本来处理 m3u 文件的每一行并将其写入相应的小时文件。每当流程开始时,我们总是在午夜 00 点或凌晨 12 点开始。从第一行到 END-OF-HOUR 这行的所有内容都进入文件 $month$day-$hour.58.15.m3u

$month 和 $day 在整个过程中保持不变并成功完成。我遇到问题的地方是当我点击 END-OF-HOUR 行时。假设发生的是脚本将 $hour 从 00 切换为 01。前面的 0 对于 0-9 小时非常重要。一旦发生切换,它将从文件中的下一行开始写入 hour 01 文件,直到它再次到达 END-OF-HOUR 行。小时值(value)再次增加。

这需要全天 24 小时持续。

发生的事情是此脚本将主文件全部复制到小时 00 文件中。

这是我自己能够做的:

<?php

//$location="";
$file="PLAYLIST";

$month="Nov";
$day="28";
$hour="00";
$outputlocation="Processed";
$outputfile="$month$day-$hour.58.15";


//Create Playlist Files Code Here and Working//

$handle = fopen("$file.m3u", "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
// process the line read.



//Begin Processing
//If End Of Hour
if ($line=="END-OF-HOUR"){

//If Not 11PM
if ($hour !=="23"){
$hour="$hour" + 1;
}

//If 11PM
if ($hour =="24"){
echo "<script>alert('MusicMaster File Processing Complete')</script>";
}
}



//If Not End Of Hour
if ($line !="END-OF-HOUR"){
$ofile=file_get_contents("$outputlocation\\$outputfile.m3u");
$nfile="$ofile
$line";
file_put_contents("$outputlocation\\$outputfile.m3u", "$nfile");

}


}

fclose($handle);
} else {
// error opening the file.

echo "<script>alert('Error Opening MusicMaster File')</script>";
}

//https://stackoverflow.com/questions/13246597/how-to-read-a-file-line-by-line-in-php
?>

我不太精通 php 中的循环。只是非常基本的 if 语句和 mysql 查询。

这是它每小时从中提取并输出的文件。这只是一个片段:

M:\JINGLES\TOH\LEGAL ID 20170416-A.mp3
M:\ITUNES\Music\Danny Gokey\Rise (Album)\02 If You Ain't In It.mp3
M:\ITUNES\Music\MercyMe\MercyMe, It's Christmas\06 Have a Holly Jolly Christmas.mp3
M:\JINGLES\STANDARD\Stay Tuned.mp3
M:\ITUNES\Music\Royal Tailor\Royal Tailor\06 Ready Set Go.mp3
M:\ITUNES\Music\Third Day\Revelation\03 Call My Name.mp3
M:\THE STORY BEHIND IT\Mandisa - Bleed The Same (Song Story).mp3
M:\PROMOTIONS\Valley Park Flea Market & Resale (6PM 5-29).mp3
M:\PROMOTIONS\FoundationLyrics_com.mp3
M:\PROMOTIONS\VinVlogger_com (5-15-17).mp3
END-OF-HOUR
M:\JINGLES\TOH\LEGAL ID 20170816.mp3
M:\ITUNES\Music\Audio Adrenaline\Kings & Queens\02 Kings & Queens.mp3
M:\ITUNES\Music\Stars Go Dim\Stars Go Dim\01 Doxology.mp3
M:\JINGLES\STANDARD\LIN\LIN-002.mp3
M:\ITUNES\Music\NewSong\Newsong\Christian.mp3
M:\ITUNES\Music\David Dunn\Crystal Clear - EP\02 Have Everything.m4a
M:\THE STORY BEHIND IT\Mandisa - Bleed The Same (Song Story).mp3
M:\PROMOTIONS\Valley Park Flea Market & Resale (6PM 5-29).mp3
END-OF-HOUR

我知道我做错了什么,只是似乎无法弄清楚它是什么。非常感谢您提供的任何帮助。

最佳答案

我将从改变这个开始。

$outputfile="$month$day-$hour.58.15";  

这需要在 while 循环迭代时更新(或者至少在您更改小时时)

现在,您一直都在使用为小时 00 设置的初始值。

这就是为什么你会得到它不改变小时的行为,因为它的值永远不会在循环运行时重新分配。

更新

我冒昧地重写了您的代码。不好意思我是个完美主义者,越看越不喜欢。 (没有测试,因为我没有任何文件)

$file="PLAYLIST";

//Use an array, it's more concise and readable
$date =[
'month' => "Nov",
'day' => 28,
'hour' => 0,
'minute' => 58, //added for extendability
'second' => 15 //added for extendability
];

$outputlocation="Processed";
/*** Create Playlist Files Code Here and Working ***/

//open file. We can't proceed without the file, might as well stop here if we can't open it.
if(false === ($handle = fopen("$file.m3u", "r"))) die("Failed to open file.");

//while each line in the file
while (($line = fgets($handle)) !== false) {
if(trim(strtoupper($line)) =="END-OF-HOUR"){//If $line = End Of Hour

//trim removes whitespace from front and back, strtoupper should be self explanitory

if($hour < 24 ){
//if less the 12pm (and $line = 'END-OF-HOUR' )
//increment hour and left pad.
//you may need to use < 23 your logic forgot about it.

++$date['hour'];
}else{
//else if 12pm (and $line = 'END-OF-HOUR' )
echo "<script>alert('MusicMaster File Processing Complete')</script>";
}
continue;
/*
goes to next line ( iteration of the loop )
none of the code below this runs.
logically this is essentially what you had ^
so there is no need to continue
*/
}

// 0 pad left any parts that are len of 1 lenght
$fixed = array_map(function($i){
return (strlen($i) == 1) ? "0$i":$i;
}, $date);

/*
create the filename just before we use it
not that it matter in PHP, but the original array stays as INT's
the month is strlen() = 3, so it's unchanged by the above.
*/
$outputfile = $fixed['month'].$fixed['day'].'-'.$fixed['hour'].'.'.$fixed['minute'].'.'.$fixed['second'];

//this is all you..
$ofile=file_get_contents("$outputlocation\\$outputfile.m3u");
$nfile="$ofile
$line";
file_put_contents("$outputlocation\\$outputfile.m3u", "$nfile");

} //end while

我用这个测试了一些东西:

$date =[
'month' => "Nov",
'day' => 28,
'hour' => 0,
'minute' => 58, //added for extendability
'second' => 15 //added for extendability
];

$fixed = array_map(function($i){
return (strlen($i) == 1) ? "0$i":$i;
}, $date);

$outputfile = $fixed['month'].$fixed['day'].'-'.$fixed['hour'].'.'.$fixed['minute'].'.'.$fixed['second'];


print_r($fixed);

echo "\n$outputfile\n";

输出

Array
(
[month] => Nov
[day] => 28
[hour] => 00
[minute] => 58
[second] => 15
)

Nov28-00.58.15

你可以在这个sandbox中试试

更新

如果你不想修剪所有的线,那么就把这个分开

while (($line = fgets($handle)) !== false) {  
if(trim(strtoupper($line)) =="END-OF-HOUR"){//If $line = End Of Hour

像这样

while (($line = fgets($handle)) !== false) {  
$line = trim($line);
if(strtoupper($line) =="END-OF-HOUR"){//If $line = End Of Hour

关于 trim 的一些其他事情,

  • 你可以通过设置第二个参数来设置它修剪的字符,就像这样 trim('**foo**', '*');//输出'foo'
  • 您可以设置多个字符,但它的作用类似于 OR 并替换每个字符,而不考虑顺序,例如 trim('abcFOOcba', 'abc');//输出'FOO'
  • 您可以使用 rtrim(' Foo '); 修剪右侧//输出 'Foo' 或使用 ltrim('Foo'); 修剪左边//输出'Foo'

我不知道为什么他们有 3 个独立的函数,我更喜欢这个 trim($string, $match, $flag); 其中 flag 是 TRIM_RIGH , TRIM_LEFT, TRIM_BOTH 但是,我猜你不能得到你想要的一切。 (类似于 MySql 版本)

通过使用 array_map

,您可以很容易地修剪数组中的空白区域
 $a = [ 'Foo  ', '  Bar  '];

$a = array_map('trim', $a);
print_r($a); //outputs ['Foo', 'Bar']

PHP Trim 的文档

MySQL 也作为一个 TRIM() 函数 SELECT TRIM(BOTH ' ' FROM column) AS foo 它们非常有用。

Mysql Trim 的文档

关于php - 如何在 php 中到达特定行后写入新文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47544891/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com