0

我正在使用 simplexml 使用来自 wordpress 站点的数据更新 xml 文件。每次有人访问一个页面时,我都想以这样的嵌套结构将页面 ID 和视图计数器添加到文件中……</p>

<posts>
    <post>
        <postid>3231</postid>
        <postviews>35</postviews>
    </post>
    <post>
        <postid>7634</postid>
        <postviews>1</postviews>
    </post>
</posts>

我遇到的问题是插入发生在错误的位置 - 我得到以下内容......</p>

<posts>
    <post>
        <postid>3231</postid>
        <postviews>35</postviews>
    <postid>22640</postid><postviews>1</postviews><postid>22538</postid><postviews>1</postviews></post>
</posts>

如您所见,<postid>and<postviews>节点没有被包裹在新的<post>父节点中。谁能帮帮我,这让我发疯了!

到目前为止,这是我检查帖子 ID 是否存在的代码,如果不存在则添加一个…</p>

//Get the wordpress postID
$postID = get_the_ID();

$postData = get_post($postID);

//echo $postID.'<br />'.$postData->post_title.'<br />'.$postData->post_date_gmt.'<br />';

// load the document
$xml = simplexml_load_file('/Applications/MAMP/htdocs/giraffetest/test.xml');

// Check to see if the post id is already in the xml file - has it already been set?
$nodeExists = $xml->xpath("//*[contains(text(), ".$postID.")]");

//Count the results
$countNodeExists = count($nodeExists);

if($countNodeExists > 0) {

    echo 'ID already here';

} else {
    echo 'ID not here';

    $postNode = $xml->post[0];
    $postNode->addChild('postid', $postID);
    $postNode->addChild('postviews', 1);
}

// save the updated document
$xml->asXML('/Applications/MAMP/htdocs/giraffetest/test.xml');

非常感谢,詹姆斯

4

1 回答 1

0

如果你想<post>在你的 xml 文档中添加一个新元素,你的代码中应该有一个addChild('post')地方。像这样更改else部分:

/* snip */
} else {
    $postNode = $xml->addChild('post'); // adding a new <post> to the top level node
    $postNode->addChild('postid', $postID); // adding a <postid> inside the new <post>
    $postNode->addChild('postviews', 1); // adding a postviews inside the new <post>
}
于 2012-11-22T09:12:42.657 回答