我想知道如何找到最後一個與PHP的表,如果是最後那麼我想要應用不同的風格和內容。我怎樣才能找到最後與PHP表
這是我的代碼生成表內容的一部分。
$content .= '</tr>';
$totalcols = count ($columns);
if (is_array ($tabledata))
{
foreach ($tabledata as $tablevalues)
{
if ($tablevalues[0] == 'dividingline')
{
$content .= '<tr><td colspan="' . $totalcols . '" style="background-color:#efefef;"><div align="left"><b>' . $tablevalues[1] . '</b></div></td></tr>';
continue;
}
else
{
$content .= '<tr>';
foreach ($tablevalues as $tablevalue)
{
$content .= '<td>' . $tablevalue . '</td>';
}
$content .= '</tr>';
continue;
}
}
}
else
{
$content .= '<tr><td align="center" style="border-bottom: none;" colspan="' . $totalcols . '">No Records Found</td></tr>';
}
我知道有一個選項可以做這樣的事情用jQuery以後,但我不想把它複雜化,並用PHP的時候正好解決了它,當我生成表格。
爲什麼你需要這個?可能有另一種方法。 –
你的問題不清楚。你想[做這個](http://stackoverflow.com/questions/1070244/how-to-determine-the-first-and-last-iteration-in-a-foreach-loop)? –
你不能只計算'$ tablevalues'嗎? – Elen