您没有访问正确的节点。在您的示例中,
$xml保留根节点
<info/>。这里有个很好的提示:
始终在XML文档的根节点之后命名用于保存XML文档的变量 ,这样可以避免这种混淆。
另外,正如Ward Muylaert指出的那样,您需要保存文件。
这是更正的示例:
// load the document// the root node is <info/> so we load it into $info$info = simplexml_load_file('test.xml');// update$info->user->name->nameCoordinate->xName = $xPostName;$info->user->name->nameCoordinate->yName = $yPostName;// save the updated document$info->asXML('test.xml');
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)