Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找使用 php5 将 xml 文件从根目录保存到不同的目录。有任何想法吗?
//write to the file $filename = $id . ".xml"; $doc->save($filename);
我想将文件保存到/xml/目录中。
/xml/
将参数更改$doc->save为包含路径
$doc->save
$filename = '/xml/' . $id . ".xml"; $doc->save($filename);
现在要记住的是,这是一个文件系统路径,而不是 Web URL,所以它实际上会保存在/xmlnot中DOCUMENT_ROOT/xml。
/xml
DOCUMENT_ROOT/xml