PHP和HTML:如何使用图像遍历目录?

前端之家收集整理的这篇文章主要介绍了PHP和HTML:如何使用图像遍历目录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
像这样非常简单的文件夹结构……

> index.PHP
> img

> someimage1.jpg
> someimage2.png
> someimage3.jpg

我想知道使用PHP读取这个img文件夹并创建一个微观网站,通过“prev”和“next”链接循环遍历这个图像是多么困难.

所以我不想手动指定图像的文件名是什么.我只想在图像文件夹中添加图像,然后运行PHP脚本并创建类似的导航

<a href="nextimage-link" class="next">Next Image</a>
<a href="previmage-link" class="prev">PrevIoUs Image</a>

因此,每当我点击“下一张图片链接时,它都会更新网站并显示下一张图片.

建造这个很复杂吗?有什么想法吗?
提前感谢您的帮助和帮助.

考虑以下情况,我假设img文件夹位于/ var / www文件夹中:
$dir = "/var/www/img/*.jpg";
//get the list of all files with .jpg extension in the directory and safe it in an array named $images
$images = glob( $dir );

//extract only the name of the file without the extension and save in an array named $find
foreach( $images as $image ):
    echo "<img src='" . $image . "' />";
endforeach;

为了获得更好的UI,您可以创建一个图像路径数组并将它们存储在JavaScript数组中.然后使用“上一个”和“下一个”按钮更改图像阵列的索引并在单个img标记显示当前值.

原文链接:https://www.f2er.com/php/130525.html

猜你在找的PHP相关文章