色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

php操作csv文件代碼實例匯總

1.讀取csv數(shù)據(jù), 輸出到sales.csv文件中:

$sales = array(  array('Northeast', '2004-01-01', '2004-02-01', 12.54),  array('Northwest', '2004-01-01', '2004-02-01', 546.33),  array('Southeast', '2004-01-01', '2004-02-01', 93.26),  array('Southwest', '2004-01-01', '2004-02-01', 945.21),  array('All Regions', '---', '--', 1597.34),);$fh = fopen('sales.csv', 'w') or die("Can't open sales.csv");foreach($sales as $sales_line){  if(fputcsv($fh, $sales_line) === false){    die("Can't write CSV line");    }}fclose($fh) or die("Can't close sales.csv");

2. 讀取csv數(shù)據(jù), 使用特殊的流輸出

$sales = array(  array('Northeast', '2004-01-01', '2004-02-01', 12.54),  array('Northwest', '2004-01-01', '2004-02-01', 546.33),  array('Southeast', '2004-01-01', '2004-02-01', 93.26),  array('Southwest', '2004-01-01', '2004-02-01', 945.21),  array('All Regions', '---', '--', 1597.34),);$fh = fopen('php://output', 'w');foreach($sales as $sales_line){  if(fputcsv($fh, $sales_line) === false){    die("Can't write CSV line");    }}fclose($fh);

3. 讀取csv數(shù)據(jù), 輸出到緩沖中

$sales = array(  array('Northeast', '2004-01-01', '2004-02-01', 12.54),  array('Northwest', '2004-01-01', '2004-02-01', 546.33),  array('Southeast', '2004-01-01', '2004-02-01', 93.26),  array('Southwest', '2004-01-01', '2004-02-01', 945.21),  array('All Regions', '---', '--', 1597.34),);ob_start();$fh = fopen('php://output', 'w') or die("Can't open php://output");foreach($sales as $sales_line){  if(fputcsv($fh, $sales_line) === false){    die("Can't write CSV line");    }}fclose($fh) or die("Can't close php://output");$output = ob_get_contents();ob_end_clean();

4. 讀取csv文件的數(shù)據(jù)

$fp = fopen('sample3.csv', 'r') or die("can't open file");print "<table>/n";while($csv_line = fgetcsv($fp)){  print '<tr>';  for($i=0, $j=count($csv_line); $i<$j; $i++){    // print '<td>'.htmlentities($csv_line[$i]).'</td>';      print '<td>'.htmlentities(iconv("gb2312","utf-8",$csv_line[$i])).'</td>';  }  print "</tr>/n";}print "</table>/n";fclose($fp) or die("can't close file");

5. 下載CSV文件

$sales = array(  array('Northeast', '2004-01-01', '2004-02-01', 12.54),  array('Northwest', '2004-01-01', '2004-02-01', 546.33),  array('Southeast', '2004-01-01', '2004-02-01', 93.26),  array('Southwest', '2004-01-01', '2004-02-01', 945.21),  array('中國', '2004-01-01', '2004-02-01', 945.21),);$fh = fopen('php://output', 'w') or die("can't open php://output");$total = 0;// 告訴瀏覽器發(fā)送的是一個csv文件header('Content-Type: application/csv');header('Content-Disposition: attachment; filename="sales.csv"');// 輸出表頭fputcsv($output, array('Region', 'Start Date', 'End Date', 'Amount'));// 輸出每一行數(shù)據(jù), 并遞增$totalforeach($sales as $sales_line){  if(fputcsv($fh, $sales_line) === false){    die("Can't write CSV line");    }else{    $total += $sales_line[3];    }}fputcsv($fh, array('All Regions', '--', '--', $total));fclose($fh) or die("Can't close php://output");

6.讀取CSV文件指定行和區(qū)間行

/*****讀取CSV文件中的指定行*****/function get_file_line_a($file_name,$line){ $n = 0; $handle = fopen($file_name,'r'); if ($handle) {  while (!feof($handle)) {    ++$n;    $out = fgets($handle, 4096);    if($line==$n) break;  }  fclose($handle); } if( $line==$n) return $out; return false;}echo get_file_line("windows_2011_s.csv", 10);//輸入第10行內(nèi)容/*****讀取CSV文件中的區(qū)間行*****/function get_file_line_b( $file_name,$line_star, $line_end){  $n = 0;  $handle = fopen($file_name,"r");  if ($handle) {    while (!feof($handle)) {      ++$n;      $out = fgets($handle, 4096);      if($line_star <= $n){        $ling[] = $out;      }      if ($line_end == $n) break;    }    fclose($handle);  }  if( $line_end==$n) return $ling;  return false;}//用 get_file_line讀取并輸出第11行到第20行$aa = get_file_line("windows_2011_s.csv", 11, 20); //從第11行到第20行foreach ($aa as $bb){  echo $bb."<br>";}

php技術(shù)php操作csv文件代碼實例匯總,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 伊宁县| 铜川市| 黄冈市| 霸州市| 福泉市| 汝城县| 德兴市| 伊宁市| 丽江市| 云阳县| 清徐县| 渭源县| 于都县| 通州区| 海林市| 德令哈市| 双辽市| 汶上县| 九寨沟县| 波密县| 马山县| 都匀市| 恩平市| 南靖县| 凌云县| 鸡西市| 邯郸市| 壤塘县| 华宁县| 潜山县| 中卫市| 连云港市| 托里县| 商城县| 宁陵县| 岑溪市| 汉中市| 齐齐哈尔市| 改则县| 恩平市| 萍乡市|