我想将CSV文件放在服务器端,并将其作为html表动态显示。 例如,这:
Name, Age, Sex
"Cantor, Georg", 163, M
应该成为这个:
<html><body><table>
<tr> <td>Name</td> <td>Age</td> <td>Sex</td> </tr>
<tr> <td>Cantor, Georg</td> <td>163</td> <td>M</td> </td>
</table></body></html>
欢迎任何语言的解决方案。
答案 0 :(得分:89)
previously linked solution是一段可怕的代码;几乎每一行都包含一个bug。请改用fgetcsv:
<?php
echo "<html><body><table>\n\n";
$f = fopen("so-csv.csv", "r");
while (($line = fgetcsv($f)) !== false) {
echo "<tr>";
foreach ($line as $cell) {
echo "<td>" . htmlspecialchars($cell) . "</td>";
}
echo "</tr>\n";
}
fclose($f);
echo "\n</table></body></html>";
答案 1 :(得分:13)
这是一个使用php将csv转换为html表的简单函数:
function jj_readcsv($filename, $header=false) {
$handle = fopen($filename, "r");
echo '<table>';
//display header row if true
if ($header) {
$csvcontents = fgetcsv($handle);
echo '<tr>';
foreach ($csvcontents as $headercolumn) {
echo "<th>$headercolumn</th>";
}
echo '</tr>';
}
// displaying contents
while ($csvcontents = fgetcsv($handle)) {
echo '<tr>';
foreach ($csvcontents as $column) {
echo "<td>$column</td>";
}
echo '</tr>';
}
echo '</table>';
fclose($handle);
}
可以将此功能称为jj_readcsv('image_links.csv',true);
如果第二个参数为true,那么第一行csv将被视为标题/标题。
希望这有助于某人。请评论此代码中的任何缺陷。
答案 2 :(得分:4)
phihag的答案将每一行放在一个单元格中,而您要求每个值都在一个单独的单元格中。这似乎是这样做的:
<?php
// Create a table from a csv file
echo "<html><body><table>\n\n";
$f = fopen("so-csv.csv", "r");
while (($line = fgetcsv($f)) !== false) {
$row = $line[0]; // We need to get the actual row (it is the first element in a 1-element array)
$cells = explode(";",$row);
echo "<tr>";
foreach ($cells as $cell) {
echo "<td>" . htmlspecialchars($cell) . "</td>";
}
echo "</tr>\n";
}
fclose($f);
echo "\n</table></body></html>";
?>
答案 3 :(得分:2)
仅改进了phihag's代码,因为如果文件不存在,它将陷入无限循环。
<?php
$filename = "so-csv.csv";
echo "<html><body><table>\n\n";
if (file_exists($filename)) {
$f = fopen($filename, "r");
while (($line = fgetcsv($f)) !== false) {
echo "<tr>";
foreach ($line as $cell) {
echo "<td>" . htmlspecialchars($cell) . "</td>";
}
echo "</tr>\n";
}
fclose($f);
}
else{ echo "<tr><td>No file exists ! </td></tr>" ;}
echo "\n</table></body></html>";
?>
答案 4 :(得分:1)
这是更新了一些引导程序的工作解决方案。 表格小、条纹、边框和悬停突出显示
function jj_readcsv($filename, $header = false)
{
$handle = fopen($filename, "r");
echo '<div class="table-responsive"><table class="table table-sm table-striped table-bordered table-hover">';
//display header row if true
if ($header) {
$csvcontents = fgetcsv($handle);
echo '<tr>';
foreach ($csvcontents as $headercolumn) {
echo "<th>$headercolumn</th>";
}
echo '</tr>';
}
// displaying contents
while ($csvcontents = fgetcsv($handle)) {
echo '<tr>';
foreach ($csvcontents as $column) {
echo "<td style='width:1px; white-space:nowrap;'>$column</td>";
}
echo '</tr>';
}
echo '</table></div>';
fclose($handle);
}
答案 5 :(得分:0)
HTML ...标签可以自己做,即没有PHP或java。
或查看此帖子以获取上述内容的完整详情(包含所有选项..)。
答案 6 :(得分:-1)
如果你使用\来转义引用的逗号,它是否有效?
姓名,年龄,性别
“Cantor \,Georg”,163,M
大多数分隔格式要求对其分隔符进行转义以便正确解析。
粗略的Java示例:
import java.util.Iterator;
public class CsvTest {
public static void main(String[] args) {
String[] lines = { "Name, Age, Sex", "\"Cantor, Georg\", 163, M" };
StringBuilder result = new StringBuilder();
for (String head : iterator(lines[0])) {
result.append(String.format("<tr>%s</tr>\n", head));
}
for (int i=1; i < lines.length; i++) {
for (String row : iterator(lines[i])) {
result.append(String.format("<td>%s</td>\n", row));
}
}
System.out.println(String.format("<table>\n%s</table>", result.toString()));
}
public static Iterable<String> iterator(final String line) {
return new Iterable<String>() {
public Iterator<String> iterator() {
return new Iterator<String>() {
private int position = 0;
public boolean hasNext() {
return position < line.length();
}
public String next() {
boolean inquote = false;
StringBuilder buffer = new StringBuilder();
for (; position < line.length(); position++) {
char c = line.charAt(position);
if (c == '"') {
inquote = !inquote;
}
if (c == ',' && !inquote) {
position++;
break;
} else {
buffer.append(c);
}
}
return buffer.toString().trim();
}
public void remove() {
throw new UnsupportedOperationException();
}
};
}
};
}
}
答案 7 :(得分:-2)
定义“动态显示”?这意味着表是通过javascript和某种Ajax-y更新构建的。如果你只是想用PHP构建表,那真的不是我称之为“动态”的
答案 8 :(得分:-2)
XmlGrid.net具有将csv转换为html表的工具。链接在这里: http://xmlgrid.net/csvToHtml.html
我使用了您的示例数据,并获得了以下html表:
<table>
<!--Created with XmlGrid Free Online XML Editor (http://xmlgrid.net)-->
<tr>
<td>Name</td>
<td> Age</td>
<td> Sex</td>
</tr>
<tr>
<td>Cantor, Georg</td>
<td> 163</td>
<td> M</td>
</tr>
</table>