使用 php、html 显示 table 文件夹中的图像?
Display images from folder in table using php,html?
我想以 table 形式显示我的图像。这是我的代码:
<?php
$files = glob("images/*.*");
for ($i = 0; $i < count($files); $i++) {
$image = $files[$i];
$supported_file = array(
'gif',
'jpg',
'jpeg',
'png'
);
$ext = strtolower(pathinfo($image, PATHINFO_EXTENSION));
if (in_array($ext, $supported_file)) {
echo basename($image);
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px /><br>';
} else {
continue;
}
}
?>
有点像那张照片。
如果你想在 table 中使用它,只需添加 table 标签和
<table>
<tr>
<th>Image Name</th>
<th>Image</th>
</tr>
<?php
$files = glob("images/*.*");
for ($i = 0; $i < count($files); $i++) {
$image = $files[$i];
$supported_file = array(
'gif',
'jpg',
'jpeg',
'png'
);
$ext = strtolower(pathinfo($image, PATHINFO_EXTENSION));
if (in_array($ext, $supported_file)) {
echo "<tr><td>";
echo basename($image);
echo "</td><td>";
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px /><br>';
echo "</td></tr>";
} else {
continue;
}
}
?>
</table>
更改您的 html 代码:
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px /><br>';
至
echo "<table border='1'>";
echo "<tr><td>";
echo basename($image);
echo "</td><td>";
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px />';
echo "</td></tr>";
echo "</table>";
我想以 table 形式显示我的图像。这是我的代码:
<?php
$files = glob("images/*.*");
for ($i = 0; $i < count($files); $i++) {
$image = $files[$i];
$supported_file = array(
'gif',
'jpg',
'jpeg',
'png'
);
$ext = strtolower(pathinfo($image, PATHINFO_EXTENSION));
if (in_array($ext, $supported_file)) {
echo basename($image);
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px /><br>';
} else {
continue;
}
}
?>
有点像那张照片。
如果你想在 table 中使用它,只需添加 table 标签和
<table>
<tr>
<th>Image Name</th>
<th>Image</th>
</tr>
<?php
$files = glob("images/*.*");
for ($i = 0; $i < count($files); $i++) {
$image = $files[$i];
$supported_file = array(
'gif',
'jpg',
'jpeg',
'png'
);
$ext = strtolower(pathinfo($image, PATHINFO_EXTENSION));
if (in_array($ext, $supported_file)) {
echo "<tr><td>";
echo basename($image);
echo "</td><td>";
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px /><br>';
echo "</td></tr>";
} else {
continue;
}
}
?>
</table>
更改您的 html 代码:
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px /><br>';
至
echo "<table border='1'>";
echo "<tr><td>";
echo basename($image);
echo "</td><td>";
echo '<img src="' . $image . '" alt="Random image" ,width=100px, height=100px />';
echo "</td></tr>";
echo "</table>";