我正在尝试构建一个网页,以使用PHP从文件夹显示图像。但是由于某种原因,它停止显示图像文件夹中的所有图像,并且仅显示部分图像。我在该功能中有分页功能,但并非所有图像都在显示。我检查了目录以确保文件位于其中。
当计算文件时,根据php我总共得到76个。该目录有74张图像。但是我的页面仅显示60张图像。请帮我解决这个问题!
这是我正在使用的代码:
<?php
function show_pagination($current_page, $last_page){
echo '<br><div>';
if( $current_page > 1 ){
echo ' <button class="button" type="button"><a href="?page='.($current_page-1).'"><<Previous</a></button> ';
}
for($i = 1; $i <= $last_page; $i++){
echo ' <button class="button" type="button"><a href="?page='.$i.'">'.$i.'</a></button> ';
}
if( $current_page < $last_page ){
echo ' <button class="button" type="button"><a href="?page='.($current_page+1).'">Next>></a></button> ';
}
echo '</div><br>';
echo '<div><p>Page '.$current_page.' out of '.$last_page.'</p></div><br>';
}
$folder = 'images/';
$filetype = '*.*';
$files = glob($folder.$filetype);
$total = count($files);
$per_page = 20;
$last_page = (int)($total / $per_page);
if(isset($_GET["page"]) && ($_GET["page"] <= $last_page) && ($_GET["page"] > 0) ){
$page = $_GET["page"];
$offset = ($per_page * ($page - 1)) + 1;
}else{
//echo "Page out of range showing results for page one";
$page=1;
$offset=0;
}
$max = $offset + $per_page;
if($max>$total){
$max = $total;
}
echo "Total number of files is $total";
show_pagination($page, $last_page);
for($i = $offset; $i< $max; $i++){
$file = $files[$i];
$path_parts = pathinfo($file);
$filename = $path_parts['filename'];
echo "<a href='$file'><img src='$file' alt='$filename' style='height: 30%; width: 30%; border-style: solid;border-width: 2px;border-color: #000000; margin: 5px'></a>";
}
show_pagination($page, $last_page);
?>
这在某种程度上对我有用,但现在不起作用,所以我想知道我的PHP代码是否固有错误。我是php新手。
答案 0 :(得分:1)
问题出在您的代码行中使用的int
:
$last_page = (int)($total / $per_page);
使用ceil()
代替:
$last_page = ceil($total / $per_page);
原因是,如果我们使用int
,则总图像74/20给出3.7,结果为3。如果我们使用ceil()
,则即使3.1也将转换为4。因此,您将不会错过任何图像。