我正在使用 PHP 代码生成一个 html 表,以从 .csv 表中获取内容。
现在我希望每个特定单元格的格式取决于它的内容。
我(可能很糟糕)在伪代码中的尝试:
if (cell content == "green")
use #green-css-style
if else (cell content == "blue")
use #blue-css-style
等等。
我只希望它“收听”有限数量的不同内容(大约 5 个)。
这是我的 PHP 表生成器:
<?php
$hasTitle = true;
echo '<table id="dataTable" class="table">';
$handle = fopen("data.csv", "r");
$start = 0;
;
while (($data = fgetcsv($handle, 1000, ";")) !== FALSE)
{
echo '<tr>' . "\n";
for ( $x = 0; $x < count($data); $x++)
{
if ($start == 0 && $hasTitle == true)
echo '<th title="ignore_case">'.$data[$x].'</th>' . "\n";
else
echo '<td>'.$data[$x].'</td>' . "\n";
}
$start++;
echo '</tr>' . "\n";
}
fclose($handle);
;
echo '</table>' . '<br style="clear: both;">';
?>
非常欢迎对此提供任何帮助,可根据要求提供更多详细信息!:)