写入 Flex 项目源目录中的 XML 文件?
我正在写入一个 XML 文件,该文件位于我的 Flex 项目的 src 目录中。但是当我运行我的应用程序时,我对该 XML 文件所做的更改实际上反映在我的 C:\wamp\www\myProject-debug\myXML.xml 中该 XML 文件的副本中。
有没有一种方法可以将这些更改反映到实际的 xml 文件(即 src 目录中的文件)?
服务器端:PHP
PHP 文件位于同一个 src 文件夹中。这是相关的代码片段:
.
.
$xdoc = new DomDocument("1.0");
$xdoc->Load('myXML.xml');
$xdoc->preserveWhiteSpace = false;
$xdoc->formatOutput = true;
$xcurrUsers=$xdoc->getElementsByTagName('currentUsers')->item(0);
$xuser=$xdoc->createElement('user');
$xcurrUsers->appendChild($xuser);
.
.
$xdoc->save("myXML.xml");
I am writing to an XML file which is placed in the src directory of my Flex project. But when I run my application, the changes I make to that XML file actually reflects in the copy of that XML file in my C:\wamp\www\myProject-debug\myXML.xml.
Is there a way to reflect those changes to the actual xml file i.e. the one in the src directory?
Server Side: PHP
PHP file is in the same src folder. Here is the related snippet of code:
.
.
$xdoc = new DomDocument("1.0");
$xdoc->Load('myXML.xml');
$xdoc->preserveWhiteSpace = false;
$xdoc->formatOutput = true;
$xcurrUsers=$xdoc->getElementsByTagName('currentUsers')->item(0);
$xuser=$xdoc->createElement('user');
$xcurrUsers->appendChild($xuser);
.
.
$xdoc->save("myXML.xml");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够在调用
$xdoc->save()
时使用要保存位置的相对或绝对路径来执行此操作。由于您当前没有提供路径,因此它被保存在当前目录中。You should be able to do so by using a relative or absolute path to where you want to save when you call
$xdoc->save()
. Since you are currently not providing a path, it is being saved in the current directory.