php DOMDocument修改xml结点里面的内容 非结点属性内容
以下是PHP代码:<?php$xml=newDOMDocument();$xml->load('playlist.xml');foreach($xml->getEleme...
以下是PHP代码:
<?php
$xml = new DOMDocument();
$xml->load('playlist.xml');
foreach($xml->getElementsByTagName('title') as $list)
{
$value = $list->nodeValue;
if ($value == 'SONGA')
{
$value->nodeValue="123456789";
$xml->save( 'playlist.xml');
}
echo $value."<br />";
}
?>
以下是playlist.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<music autoPlay="true" autoNextSong="true">
<song>
<title>SONGA</title>
<mp3File>asgsdgs</mp3File>
</song>
<song>
<title>SONGB</title>
<mp3File>CINA</mp3File></song>
<song>
<title>SONGC</title>
<mp3File>CCC</mp3File>
</song>
</music>
以上PHP代码能列出所有title节点的值...而上面尝试修改的那段代码各位看看哪不对!! 展开
<?php
$xml = new DOMDocument();
$xml->load('playlist.xml');
foreach($xml->getElementsByTagName('title') as $list)
{
$value = $list->nodeValue;
if ($value == 'SONGA')
{
$value->nodeValue="123456789";
$xml->save( 'playlist.xml');
}
echo $value."<br />";
}
?>
以下是playlist.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<music autoPlay="true" autoNextSong="true">
<song>
<title>SONGA</title>
<mp3File>asgsdgs</mp3File>
</song>
<song>
<title>SONGB</title>
<mp3File>CINA</mp3File></song>
<song>
<title>SONGC</title>
<mp3File>CCC</mp3File>
</song>
</music>
以上PHP代码能列出所有title节点的值...而上面尝试修改的那段代码各位看看哪不对!! 展开
2013-07-15
展开全部
我想应该是这里错了吧!if ($value == 'SONGA')
{
$value->nodeValue="123456789";
$xml->save( 'playlist.xml');
}其中的$value->改成$list->这应该是你的一个失误吧!
{
$value->nodeValue="123456789";
$xml->save( 'playlist.xml');
}其中的$value->改成$list->这应该是你的一个失误吧!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询