我对 PHP 很陌生,所以这可能已经在某个地方得到了回答。但是,我只是找不到与我的问题类似的答案,所以这里是:
我有一个名为“frozen.txt”的模板文件这个文件包含冻结项目编号的列表。它的内容看起来像
23476
23829
26974
我还有大约 20 个代表每日销售数据的文件:“frozen-4-1.txt”、“frozen-4-2.txt”、“frozen-4-3.txt”等。每个 txt 文件包含 3 列“;” . 第一列与 "frozen.txt" 完全相同。第 2 列以“Each”为单位表示库存编号,第 3 列以“Box”为单位表示库存编号。例如,“frozen-4-1.txt”看起来像:
23476;30;3
23829;100;10
26974;50;5
“frozen-4-2.txt”看起来像
23476; 20; 2
23829; 90; 9
26974;40; 4
“frozen-4-3.txt”看起来像
23476; 10个;1
23829;60; 6
26974;20; 2
现在我想创建两个名为“outputeach.dat”和“outputbox.dat”的新文件,这些文件使用“frozen.txt”作为第一列,然后分别使用每日数据txt文件的第二列和第三列作为新列.(由“;”分隔)因此,“outputeach.dat”看起来像:
23476;30;20;10
23829;100;90;60
26974:50;40;20
和“outputbox.dat”看起来像
23476;3;2;1
23829;10;9;6
26974:5;4;2
这是我试图实现这一目标的代码,但我被困在程序的末尾
<?php
include('path.php');
$space = "\r\n"; // For NewLine ...
$frzlist = array();
$readfrz = fopen("C:/purchase/dailydata/frozen.txt", "r");
while (!feof($readfrz)) {
$foo2 = fgets($readfrz);
$trufoo2 = trim( preg_replace( '/\s+/', ' ', $foo2 ) ); // get rid of new line in $foo2
$frzlist[] = $trufoo2; // read all the frozen item list into array $frzlist
}
fclose($readfrz);
if ($handle = opendir(BASE_PATH)){
while (false !== ($file = readdir($handle)))
{
if ($file == "." || $file == ".."){}else
{
if(!strstr($file,"txt"))
{
continue; //Skip as file is not txt format
}
$s = explode("-",$file);
$prefix = $s[0];
$prefix1 = $s[1];
$prefix2 = $s[2];
//echo $prefix . " "; // representing catogory
//echo $prefix1 . " "; // representing month
//echo $prefix2 . " "; // representing day
}
}
}
for($i=1 ; $i<32; $i++){ //loop through one month data
$days = $prefix1 . "-" . $i ;
$file1 = BASE_PATH . $prefix . "-" . $prefix1 . "-" . $i . ".txt" ;
//echo $file1 . "\n";
//echo $days . "\n";
if (file_exists($file1)) {
$fileopen1 = fopen($file1,"r");
while (!feof($fileopen1)) {
$foo = fgets($fileopen1);
$members1[] = $foo; // read all the contents into array $members1
}
$outputfrzpri = array();
$outputfrzsec = array();
if($prefix = "frozen"){
foreach ($members1 as $x1){
$pieces1 = explode(";", $x1);
CODE needs help here
CODE needs help here
}
}
}
}
?>
非常感谢您的建议