0

只是一个简单的问题,正在尝试不同的方法来实现这一点,但没有成功。我正在尝试使用 xpath 检查属性值,如果属性值匹配,我会在 xml 中更改该标记的参数。

这有效:

$obj= $xml->xpath('/document/item[@id = "a12sd"]');

这不起作用,因为我需要通过变量传递值来检查属性值

$checkID = "a12sd";

$obj= $xml->xpath('/document/item[@id = $checkID]');

任何建议我如何解决这个问题。

编辑:

XML 文件:

<?xml version="1.0" encoding="ISO-8859-1"?>
<document>
    <item id="a12sd">       
        <name>James</name>
        <pdf>0023.pdf</pdf>
    </item>
    <item id="rdf23">       
        <name>Alex</name>
        <pdf>0178.pdf</pdf>
    </item>
    <item id="2we34">       
        <name>Tom</name>
        <pdf>0886.pdf</pdf>
    </item>
    <item id="123de">       
        <name>Robby</name>
        <pdf>1239.pdf</pdf>
    </item>
</document>

PHP代码:

$id = "a12sd";
$xml = simplexml_load_file('items.xml');  

$who_is_who = $xml->xpath('/document/item[@id = "a12sd"]');             

$who_is_who[0]->name = "Arnold";

$xml->asXml("items.xml");

谢谢

4

1 回答 1

1

Try $obj= $xml->xpath('/document/item[@id="'.$checkID.'"]');

<?php
$id = "a12sd";
$xml = simplexml_load_file('items.xml');  

$who_is_who = $xml->xpath('/document/item[@id = "'.$id.'"]');             

$who_is_who[0]->name = "Arnold";

$xml->asXml("items.xml");

?>
于 2012-06-19T10:51:12.247 回答