写入 Flex 项目源目录中的 XML 文件?

发布于 2024-10-18 22:34:24 字数 590 浏览 4 评论 0原文

我正在写入一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温暖的光 2024-10-25 22:34:24

您应该能够在调用 $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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文