PHP CSV檔案讀寫範例
PHP CSV檔案讀寫範例
資料來源: http://jashliao.pixnet.net/blog/post/206848009
php、header、utf-8、fopen、fwrite、fclose、file_exists、feof、isset、Undefined offset、foreach、count(陣列名稱)、for、explode、切割字串
Create_csv.php
<?php header(“Content-Type:text/html; $filename $myfile $txt fwrite($myfile, $txt fwrite($myfile, fclose($myfile); echo ?> |
Read_csv.php
<?php header(“Content-Type:text/html; $filename if(file_exists($filename)) { $file if($file { echo while { $str if($str!=”)//因為換行符號也算一行,所以雖然只有兩行資料,但是會有三行數據 { echo } } fclose($file); } $file1 if($file1 { echo while { $str $output /* //方法01 //Undefined $value[0]=isset($output[0])?$output[0]:”; $value[1]=isset($output[1])?$output[1]:”; $value[2]=isset($output[2])?$output[2]:”; echo */ /* //方法02 $str=”; foreach { $str.=$value.” “; } $str.=”<br>”; echo */ $str=”; $len=0; $len=count($output); if($len>1)//因為換行符號也算一行,所以雖然只有兩行資料,但是會有三行數據 { for($i=0;$i<$len;$i++) { $str } $str echo } } fclose($file1); } } echo ?> |