gpt4 book ai didi

php - 使用分页查看目录中的文件 - php

转载 作者:可可西里 更新时间:2023-10-31 22:15:51 26 4
gpt4 key购买 nike

我想在浏览器中显示目录中的文件。我知道这可以使用 @opendirreaddir ..但我想要的是将列表中的文件数量限制为特定数量并使用分页显示下一个.

最佳答案

你可以使用 scandir将目录的所有内容读入数组。然后根据分页值输出数组内容。

$offset = 10; //get this as input from the user, probably as a GET from a link
$quantity = 10; //number of items to display
$filelist = scandir('/mydir');

//get subset of file array
$selectedFiles = array_slice($filelist, $offset-1, $quantity);

//output appropriate items
foreach($selectedFiles as $file)
{
echo '<div class="file">'.$file.'</div>';
}

关于php - 使用分页查看目录中的文件 - php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5105810/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com