我只是想在浏览器中显示文件夹中的图片。我没有网络开发经验。以下代码无效。
<!DOCTYPE html>
<html>
<body>
<h1>Images from floder</h1>
<p>Using PHP</p>
<?php
$files = glob("Notes/*.*");
for ($i=1; $i<count($files); $i++)
{
$image = $files[$i];
print $image ."<br />";
echo '<img src="'.$image .'" alt="Random image" />'."<br /><br />";
}
?>
</body>
</html>
这是在浏览器上呈现时html页面的输出:
Images from floder
Using PHP
"; echo 'Random image'."
"; } ?>
答案 0 :(得分:0)
<强>更新* 强>
我认为php
代码无法parsed
确保您的测试文件扩展名为php
而不是html
确保您在同一目录中包含带有图像文件的Notes /`目录。并且还添加一些验证/检查扩展等。
您可以使用scandir
和pathinfo'
函数`执行此操作,如下所示:
$dir = 'Notes/';
$files = scandir($dir);
$allowed_extensions = array('png', 'gif', 'jpg', 'jpeg');
foreach ($files as $file) {
if (in_array(pathinfo($file, PATHINFO_EXTENSION), $allowed_extensions)) {
echo '<img src="' . $dir . $file . '" alt="Random image" />' . "<br /><br />";
}
}