<?php
/** * 從兩個.csv 檔案中讀出資料
* 比較這兩個檔案不同的資料,並存入.csv 檔案中
*/header("content-type:text/html;charset=utf-8");
class readfiledata
/*** 讀檔案並獲取資料
*/private static function getdata($file)
fclose ( $handle );
return $orderform;
} /**
* 獲取兩個檔案不同的資料
* * @param string $file1
* @param string $file2
*/private static function getdiffdata($file1, $file2)
/*** 資料寫入.csv 檔案中
* @param string $filename
* @param string $file1
* @param string $file2
*/private static function writefile($filename, $file1, $file2)
$toparray=array("charge_id","bussined_id");
$condition='';
$counarray=count($todiffdata)-1;
foreach($todiffdata as $key=>$val)else
} $sql="select charge_id,business_id from sinapay_charge_final where $condition";
$result=mysql_query($sql);
while($res=mysql_fetch_array($result))
if (! is_file ( $filename))
$handle = fopen ($filename, 'a' );
fputcsv($handle, $toparray);
foreach($newarray as $value)
fclose ( $handle ); }
/*** 入口檔案
*/public static function main($filename,$file1,$file2)
}$filename = 'total.csv';
$file1 = 'ac.csv';
$file2 = 'ad.csv';
readfiledata::main ($filename, $file1, $file2 );
將乙個檔案的內容寫入到另乙個檔案
對io的學習 講乙個檔案的內容寫入到另乙個檔案中 author dlding public class myiodemon02 bw.flush 將快取中的資料寫入檔案 catch filenotfoundexception e catch ioexception e finally catch i...
java如何讀取檔案到另乙個檔案
將form.txt檔案寫到formto.txt裡面。內部維護乙個游標,每當你呼叫一次後游標就自動指向下乙個位元組處,所以當再次讀取的時候就得到下乙個位元組資料。read是只要有就會繼續讀下去,讀取的b位元組陣列,讀取總長度為1024,直到讀完為止,返回 1,然後跳出,第二次從1025開始是因為如果檔...
將乙個vector的內容賦值給另乙個vector
1 vector int v1 v2 宣告 1 vector int v1 v1.swap v2 將兩個容器內的元素交換 需要構建臨時物件,乙個拷貝構造,兩次賦值操作。1 2 v1.assign v2.begin v2.end 將v2賦值給v1 但會清除掉v1以前的內容 1 2 3 4 vector...