我有以下代码读取一个 TXT 文件,从每一行中提取不需要的信息,然后将编辑的行存储在一个新的 TXT 文件中。
<?php
$file_handle = fopen("old.txt", "rb");
ob_start();
while (!feof($file_handle) ) {
$line_of_text = fgets($file_handle);
$parts = explode('\n', $line_of_text);
foreach ($parts as $str) {
$str_parts = explode('_', $str); // Split string by _ into an array
array_pop($str_parts); // Remove last element
array_shift($str_parts); // Remove first element
echo implode('_', $str_parts)."\n"; // Put it back together (and echo newline)
}
}
$new_content = ob_get_clean();
file_put_contents("new.txt", $new_content);
fclose($file_handle);
?>
我现在想插入 $hr #min 和 $sec 变量,每次保存新行时它们都会增加 1 秒。假设我的行是这样的(旧代码):
958588
978567
986766
我希望我的新代码如下所示:
125959958588
130000978567
130001986766
如您所见,小时采用 24 小时格式 (00 - 23),然后是分钟 (00 - 59) 和秒 (00 - 59),最后是提取的 txt。
我已经制定了变量框架,但我不知道如何让变量正确递增。有人可以帮忙吗?
<?php
$file_handle = fopen("old.txt", "rb");
$hr = 00;
$min = 00;
$sec = 00;
ob_start();
while (!feof($file_handle) ) {
$line_of_text = fgets($file_handle);
$parts = explode('\n', $line_of_text);
foreach ($parts as $str) {
$str_parts = explode('_', $str); // Split string by _ into an array
array_pop($str_parts); // Remove last element
array_shift($str_parts); // Remove first element
echo $hr.$min.$sec.implode('_', $str_parts)."\n"; // Put it back together (and echo newline)
}
}
$new_content = ob_get_clean();
file_put_contents("new.txt", $new_content);
fclose($file_handle);
?>