有所有这些资源用于递归循环遍历子目录,但我还没有找到一个显示如何执行相反操作的资源。
这就是我想做的...
<?php
// get the current working directory
// start a loop
// check if a certain file exists in the current directory
// if not, set current directory as parent directory
// end loop
所以,换句话说,我在当前目录中搜索一个非常特定的文件,如果它不存在,检查它的父级,然后它是父级,等等。
我尝试过的一切对我来说都是丑陋的。希望有人对此有一个优雅的解决方案。
谢谢!