<?php$fp = fopen("sample.csv","r") or die("can"t open file");print "<table>
";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>
";}print "</table>
";fclose($fp) or die("can"t close file");?>希望本文所述对大家的php程序设计有所帮助。