在线发现此代码非常有用。我一直试图将它调整几个小时,以排除某个文件名(mobile.htm)。我可以在正确的方向上获得一些帮助,在显示结果之前排除mobile.htm文件名,如何显示文件的完整路径,以便将其转换为链接?
<?php
$path = "states";
$latest_ctime = 0;
$latest_filename = '';
$d = dir($path);
while (false !== ($entry = $d->read())) {
$filepath = "{$path}/{$entry}";
if(is_file($filepath) && filectime($filepath) > $latest_ctime) {
$latest_ctime = filectime($filepath);
$latest_filename = $entry;
echo $latest_filename;
?>
更新:这是我为我工作的代码。我有一个$ var,我试图在一个没有看到的索引页面上查看。对我有用的是在主页上创建一个iframe链接到另一个带有$ var的$ _SESSION信息的页面。以下是我为iframe工作的代码。
我列出的3 if($ entry ==“YourFile.html”){continue;} 会阻止请求显示您输入的特定文件。
<?php
$path = "states/$ls";
$latest_ctime = 0;
$latest_filename = '';
$d = dir($path);
while ($entry = $d->read()) {
if ($entry == "mobile.htm") {continue;}
if ($entry == "bg.jpg") {continue;}
if ($entry == "flag.png") {continue;}
$filepath = "$path/$entry";
$ctime = filectime($filepath);
if (is_file($filepath) && $ctime > $latest_ctime) {
$latest_ctime = $ctime;
$latest_filename = $filepath;
}
}
echo $latest_filename;
?>
非常感谢@Barmar帮助我。我非常喜欢这个网站和社区。
答案 0 :(得分:0)
您可以使用continue;
语句跳到循环的下一次迭代。
while ($entry = $d->read()) {
if ($entry == "mobile.html") {
continue;
}
$filepath = "$path/$entry";
$ctime = filectime($filepath);
if (is_file($filepath) && $ctime > $latest_ctime) {
$latest_ctime = $ctime;
$latest_filename = $filepath;
}
}
echo $latest_filename;
我将$filepath
放在$latest_filename
中,因为您需要链接的完整路径。