要自定義 PHP 表格的樣式,您需要使用 HTML 和 CSS。以下是一個(gè)簡單的示例,說明如何創(chuàng)建一個(gè)帶有自定義樣式的 PHP 表格:
<?php
$data = [
['name' => 'John', 'age' => 28, 'city' => 'New York'],
['name' => 'Jane', 'age' => 24, 'city' => 'San Francisco'],
['name' => 'Mike', 'age' => 35, 'city' => 'Los Angeles'],
];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom PHP Table</title>
<style>
/* 自定義表格樣式 */
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
tr:hover {
background-color: #f5f5f5;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>City</th>
</tr>
</thead>
<tbody>
<?php foreach ($data as $row): ?>
<tr>
<td><?php echo htmlspecialchars($row['name']); ?></td>
<td><?php echo htmlspecialchars($row['age']); ?></td>
<td><?php echo htmlspecialchars($row['city']); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</body>
</html>
在上面的示例中,我們首先使用 HTML 和 CSS 定義了表格的自定義樣式。然后,我們使用 PHP 輸出表格的數(shù)據(jù)。htmlspecialchars()
函數(shù)用于防止 XSS 攻擊,確保數(shù)據(jù)的安全性。