本文實例講述了php從csv文件讀取數據並輸出到網頁的方法。分享給大家供大家參考。具體實現方法如下:
<?php $fp = fopen('sample.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 "</tr>n"; } print '</table>n'; fclose($fp) or die("can't close file"); ?>
希望本文所述對大家的php程序設計有所幫助。