我正在使用 php-excel-reader 读取两个 excel 文件(从此)
读取第一行的两个文件后,我正在比较它。如果它们相同,那么我会将包含的文件附加到其他文件中。要编写我正在使用的文件
现在为此我想关闭一个文件,但该功能在 php-excel-reader 中不可用
这是我的代码
compare file
{
$data = new Spreadsheet_Excel_Reader($filepath);
$data1 = new Spreadsheet_Excel_Reader($destinationfilepath);
}
unset($data);
unset($data1);
if($flag==0)
{
$excel = new ExcelWriter($destinationfilepath);
// read the source file
$finalarray= array();
for($m=1;$m<$sourcefilerowcount;$m++)
{
$charvalue='A';
$temprow=$m+1;
for($n=0;$n<$destinationcolnum;$n++)
{
$data = new Spreadsheet_Excel_Reader($filepath);
$finalarray[$n]=$data->val($temprow,$charvalue);
$charvalue++;
}
print_r($finalarray)."<br/>";
$excel->writeLine($finalarray);
}