如何使用 PHP 显示目录中的图像?
How to display images from a directory using PHP?
我需要显示目录中的图像。目前,在显示我的图像之前先显示两张空白图像。
我被告知要设置条件 if($files>2)
,它似乎有效
<?php
$dir="imagesbu";
$files=scandir($dir);
if($files)
{
?>
<div class="row">
<?php
foreach($files as $file)
{
?>
<div class="col s6 m3 l3">
<div class="card" style="height:100px; width:150px;">
<div class="card-image">
<img src="imagesbu/<?php echo $file;?>" alt="" style="height:100px;
width:150px;" >
</div>
</div>
</div>
<?php
}
}
?>
</div>
因为您获得了第一个目录:
- (.) 当前目录
- (..) 父目录
然后获取您的文件
我需要显示目录中的图像。目前,在显示我的图像之前先显示两张空白图像。
我被告知要设置条件 if($files>2)
,它似乎有效
<?php
$dir="imagesbu";
$files=scandir($dir);
if($files)
{
?>
<div class="row">
<?php
foreach($files as $file)
{
?>
<div class="col s6 m3 l3">
<div class="card" style="height:100px; width:150px;">
<div class="card-image">
<img src="imagesbu/<?php echo $file;?>" alt="" style="height:100px;
width:150px;" >
</div>
</div>
</div>
<?php
}
}
?>
</div>
因为您获得了第一个目录:
- (.) 当前目录
- (..) 父目录
然后获取您的文件