这是我尝试过的,但它不起作用
<?php
$handle = opendir(dirname(realpath(__FILE__)) . '/pics/');
while ($file = readdir($handle)) {
if ($file !== '.' && $file !== '..') {
echo '<img src="pics/' . $file . '" border="0" class="custom-gallery img-responsive" style="height:150px;"/>';
}
}
?>
答案 0 :(得分:0)
这是遍历目录的正确方法。
while (false !== ($entry = readdir($handle))) {
echo "$entry\n";
}
也请检查图像的文件路径