0

我正在尝试通过 php 动态创建一个 XML 文件,在我的 ftp 上的特定目录中读取 DIRS 和 FILES。

到目前为止,上帝,这是代码:

<?php

$path = ".";


$dir_handle = @opendir($path) or die("Unable to open $path");

function list_dir($dir_handle,$path)
{



    while (false !== ($file = readdir($dir_handle))) {

        $dir =$path.'/'.$file;
    $link =$path.'/';


        if(is_dir($dir) && $file != '.' && $file !='..' )

        {

        $handle = @opendir($dir) or die("unable to open file $file");

    $xmlString .= '<' . $file . '>';

    list_dir($handle, $dir);

    $xmlString .= '</' . $file . '>';


        }

    elseif($file != '.' && $file !='..' && $file !='ftpteste.php')

        {

    $xmlString .= '<IMAGE>';
    $xmlString .= '<PHOTO>' . $link . '' . $file . '</PHOTO>';
    $xmlString .= '</IMAGE>';

        }
    }


closedir($dir_handle);

}



$xmlString ='<XML>';

list_dir($dir_handle,$path);

$xmlString .="</XML>";





$strXMLhead = '<?xml version="1.0" encoding="UTF-8" ?>';
$xmlString = $strXMLhead . "\n" . $xmlString;



$xmlLoc = "../../interiores/xml/content.xml";

$fileXML = fopen($xmlLoc, "w+") or die("Can't open XML file");


if(!fwrite($fileXML, pack("CCC",0xef,0xbb,0xbf)))
{
print "Error Saving File";
}
else
{
fwrite($fileXML, $xmlString);
print "XML file saved";
}

fclose($fileXML);

?>

问题是我在函数内部运行的 $XmlString 上没有得到任何输出。如果我使用 Print 而不是加入字符串,那很好,它可以完成这项工作。但我需要它在一个变量中才能保存到文件中。

保存到文件就可以了。

它应该输出如下内容:

<XML>

<$DIR NAME>
<IMAGE>
<PHOTO>$FILE_NAME</PHOTO>
</IMAGE>
</$DIR NAME>

</XML>

谁能帮我这个?

在此先感谢,阿图尔

4

2 回答 2

1

我认为你应该看看DomDocument对象。它提供了一种简单的方法来创建带有节点的文档(如 xml 文档)。你将能够避免你的问题。

于 2011-06-28T03:01:54.877 回答
0

返回您正在构建的 XML list_dir()

function list_dir($dir_handle,$path)
{
    ...
    $xmlString .= list_dir($handle, $dir);
    ...
    return $xmlString;
}

$xmlString = '<XML>' . list_dir($dir_handle,$path) . '</XML>';
于 2011-06-28T03:28:00.243 回答