drzbc6003 2015-10-20 11:00
浏览 55
已采纳

PHP:从PHP更新XML并保存

I'm trying to update 1 particular node in an pre-existing xml file from php. The problem i'm having is that it doesn't seem to be saving to the xml file. Not sure why and any help here will be appreciated!

<?php       
$itemNumber = $_GET["itemNumberField"];

$xmlFile = "items.xml";

if(file_exists($xmlFile))
{           

    // $doc = new DOMDocument('1.0');
    // $doc->load($xmlFile);

    $doc = DOMDocument::load($xmlFile); 

    $item = $doc->getElementsByTagName("item");

    foreach($item as $node) 
    {   
        $itemNumberNode = $node->getElementsByTagName("itemNumber");
        $itemNumberNode = $itemNumberNode->item(0)->nodeValue;

        $qtyNode = $node->getElementsByTagName("quantity");
        $qtyNode = $qtyNode->item(0)->nodeValue;                

        if ($itemNumberNode == $itemNumber)
        {
            $qtyNode++;

            echo $qtyNode;                  
        }
    }        
} 

else 
{       
    echo "file doesn't exist! <br/>";       
}

$doc->save($xmlFile);

?>

Edit: Just to clarify, the adding to the node seems to be fine.

Solution: Turns out the reason it didn't save was because node of the adding. i had to either directly update it or assign an updated value to it.

$qtyNode = $node->getElementsByTagName("quantity");
$qtyNode = $qtyNode->item(0);
...
$qtyNode->nodeValue++;
  • 写回答

3条回答 默认 最新

  • duanjiaolia97750 2015-10-20 13:39
    关注

    You COPY the scalar value (string) into a variable. Then you change the variable.

        $qtyNode = $qtyNode->item(0)->nodeValue;                
    
        if ($itemNumberNode == $itemNumber)
        {
            $qtyNode++;
    
            echo $qtyNode;                  
        } 
    

    $qtyNode is not a DOMNode object, but a string variable.

    You will have to change the DOMNode::$nodeValue property directly or assign the variable to it.

        $qtyNode = $qtyNode->item(0);                
    
        if ($itemNumberNode == $itemNumber)
        {
            $qtyNode->nodeValue++;
    
            echo $qtyNode->nodeValue;                  
        } 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型