程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长


+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

在目录中找到 .html 文件并重命名

发布于2022-04-27 03:16     阅读(1645)     评论(0)     点赞(7)     收藏(0)


我有一个 PHP 脚本,可以将.zip文件上传到我的服务器并将其解压缩到服务器上。这个 zip 文件包含图像、文件夹和一个随机名称的 html 文件。

我需要的是找到 html 文件 (randomname.html) 并将其重命名为 index.html 的方法。

由于我对 PHP 很陌生 - 任何帮助表示赞赏。提前致谢!


解决方案


我会使用 scandir() 函数,它会返回您指定的目录中的文件和目录数组。像这样的东西:

$path_to_directory = "/path/to/extracted/archive";

$contents = scandir($path_to_directory);

// check if $contents is a directory and actually has items
if (is_array($contents) && count($contents)) {
  foreach($contents as $item) { // loop through directory contents
    if (substr(strtolower($item), -5) == ".html") { // checking if a file ends with .html
      rename($path_to_directory . "/" . $item, $path_to_directory . "/index.html"); // rename it to index.html
      break; // no need to loop more, job's done
    }
  }
}



所属网站分类: 技术文章 > 问答

作者:黑洞官方问答小能手

链接:http://www.qianduanheidong.com/blog/article/349446/8aa571b496a830bf07b5/

来源:前端黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

7 0
收藏该文
已收藏

评论内容:(最多支持255个字符)