我需要获取目录中的所有可用子目录,保存该目录的名称,如果它们包含 XML 文件,则使用该文件。
这是我写的一些代码和一些评论。
<?php
$path = "http://source.com/path/to/subs/";
//Check for any subdirectories
foreach($subdirectory as $sub){
$name = //subdirectory's name;
// Filepath is always http://source.com/path/to/subs/name_of_sub/description.xml
$file = $path . $name . 'description.xml';
if(file_exists($file)){
//do my stuff here
}
}
//end check
?>