如何在远程文件夹 PHP 中获取最新文件?

用户6677795

我尝试获取文件夹的最新文件,但它不起作用。我的文件夹有一个带有 html:// 的 URL... 这可能是问题吗?这是我测试过的......谢谢

$files = scandir('http://wwww.site.com/myfolder', SCANDIR_SORT_DESCENDING);
$newest_file = $files[0];

或者

$path = "http://wwww.site.com/myfolder"; 

$latest_ctime = 0;
$latest_filename = '';    

$d = dir($path);
while (false !== ($entry = $d->read())) {
  $filepath = "{$path}/{$entry}";
  // could do also other checks than just checking whether the entry is a file
  if (is_file($filepath) && filectime($filepath) > $latest_ctime) {
    $latest_ctime = filectime($filepath);
    $latest_filename = $entry;
  }
}
亚当·图奇曼

您需要替换此代码:

$path = "http://wwww.site.com/myfolder";

有了这个:

$path = "myfolder"; 

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章