Find all .php files in folder recursively

前端 未结 4 2097
感动是毒
感动是毒 2020-12-14 13:10

Using PHP, how can I find all .php files in a folder or its subfolders (of any depth)?

4条回答
  •  隐瞒了意图╮
    2020-12-14 13:53

    This is similar to another answer here, but removes SKIP_DOTS as its not needed, and and works with strict_types:

    getExtension() == 'php') {
          echo $o_info->getPathname(), "\n";
       }
    }
    

    https://php.net/splfileinfo.getextension

提交回复
热议问题