1

我正在尝试创建一个 XML 文件,但 XML 文件需要包装在节点中......因此,不容易使用 append。

对此的任何帮助都会很棒!

我的 XML 包含 2 种不同的节点类型:

<entry id="1_0">
    <title>This is the title</title>
    <description>This is the description...</description>
    <subName>Publishers Name</subName>
    <date>Saturday, June 11th, 2007, 5:46:21 PM</date>
    <BorF>bug</BorF>
</entry>

<vote id="1_0">5</vote>

我有一个简单的测试页面,使用 jQuery 将数据(当前是静态的)发送到 PHP 文件

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>


<script type="text/javascript" src="jquery-1.3.2.min.js"></script>

<script>

$(function(){


    $("#addVote").click(function() {
        $.ajax({
            type: "POST",
            url: "saveListData.php",
            data: 'url=bugs_features_listdata.xml&listData=\n<vote id="1_2">3</vote>',
            async: false,
            cache: false,
            success: function(data, textStatus) {
                if (window.console) console.log(textStatus);
            },
            complete: function(XMLHttpRequest, textStatus){
                if (window.console) console.log(textStatus);
            }
        });
    });

    $("#addEntry").click(function() {
        $.ajax({
            type: "POST",
            url: "saveListData.php",
            data: 'url=bugs_features_listdata.xml&listData=\n<entry id="1_1">\n\
\t<title>This is the title 1</title>\n\
\t<description>This is the description...</description>\n\
\t<subName>Publishers Name</subName>\n\
\t<date>Saturday, June 11th, 2007, 5:46:21 PM</date>\n\
\t<BorF>bug</BorF>\n\
</entry>',
            async: false,
            cache: false,
            success: function(data, textStatus) {
                if (window.console) console.log(textStatus);
            },
            complete: function(XMLHttpRequest, textStatus){
                if (window.console) console.log(textStatus);
            }
        });
    });


}); 

</script>

</head>

<body>


<a id="addVote" href="#">ADD VOTE</a><br /><br /><a id="addEntry" href="#">ADD ENTRY</a>


</body>
</html>

...目前将其附加到我的 XML 文件中,但我需要开始/结束节点。

4

3 回答 3

4

txwinger 在对您的问题的评论中提出了正确的想法。您应该使用许多内置 XML 操作库中的一种 PHP 来添加节点,然后对其进行序列化并将其保存为文本文件。在SimpleXML中,例如:

$xml = simplexml_load_file('test.xml');
$vote = $xml->addChild('vote', '5');
$vote->addAttribute('id','1_0');
$fp = fopen('test.xml', 'w');
fwrite($fp, $xml->asXML());
fclose($fp);

还有其他 XML 操作库可能更适合您的任务

于 2009-07-10T17:43:29.683 回答
0

我会说这取决于您的 XML 文档的结构。如果“rest”是可预测的,您可以从文件中删除该部分,附加新数据并将“rest”粘贴回去:

      ⋮
n-1:     <node>last node</node>
n  :  </root>


      ⋮
n-1:     <node>last node</node>
n  :     <node>new node</node>
n+1:  </root>
于 2009-07-10T17:23:10.130 回答
0

如果您尝试以快速而肮脏的方式执行此操作:如果您在“r+”中打开文件并将指针设置为最后一个元素和文件末尾之间的空白行,它将覆盖根级元素关闭标记,因此只需在编写新的子元素后将其添加回来。请记住,我已经编写了 4 小时的 php 脚本,所以可能有更好的方法,但这是我在 4 小时的职业生涯中想出的最简单的方法。

$name = $_POST["name"];
$phone = $_POST["phone"];

$fh = fopen("xml-test-1.xml", "r+");
if (!$fh)
{
    die("Failed to open");
}

fseek($fh, -11, SEEK_END);
fwrite($fh, "<person> \n");
fwrite($fh, "<name>$name</name> \n");
fwrite($fh, "<phone>$phone</phone> \n");
fwrite($fh, "</person> \n");
fwrite($fh, "</people> \n");
fclose($fh);

echo "now look and see if anything was added";
于 2009-12-21T07:48:55.473 回答