使用string更新XML文件(SimpleXmlElement Object)

时间:2014-12-03 11:48:21

标签: php xml xpath xml-parsing jmeter

我有以下XML文件

<?xml version="1.0" encoding="UTF-8"?>
<jmeterTestPlan version="1.2" properties="2.6" jmeter="2.11 r1554548">
<hashTree>
<TestPlan ...>
  <elementProp name="TestPlan.user_defined_variables" ...>
    <collectionProp name="Arguments.arguments">

      <elementProp name="nb.publisher_Path" elementType="Argument">
        <stringProp name="Argument.name">nb.publisher_Path</stringProp>
        <stringProp name="Argument.value">http://mmm.com</stringProp>
        <stringProp name="Argument.metadata">=</stringProp>
      </elementProp> .... 

我想更新里面的URL:elementProp name =“nb.publisher_Path”

从:http://mmm.com 致:http://aaa.com

所以我写了以下PHP代码:

<?php
$xml = new SimpleXmlElement(file_get_contents("C://...Testing_User.jmx"));

    $result_publisher_Path_2 = $xml->xpath('//elementProp[@name="nb.publisher_Path"]/stringProp[@name="Argument.value"]')[0];

    $result_advertiser_Path = $xml->xpath('//elementProp[@name="nb.advertiser_Path"]/stringProp[2]');
    $result_adbrooker_Path = $xml->xpath('//elementProp[@name="nb.adbrooker_Path"]/stringProp[2]');
    echo ($result_publisher_Path_2);
    (string)$xml->xpath('//elementProp[@name="nb.publisher_Path"]/stringProp[@name="Argument.value"]')[0] = "http://aaa.com";
    echo $xml->asXml();

所以

的结果
echo ($result_publisher_Path_2);

是我要替换的正确网址,当我尝试使用

进行更改时
(string)$xml->xpath('//elementProp[@name="nb.publisher_Path"]/stringProp[@name="Argument.value"]')[0] = "http://aaa.com";  

它没有被改变。

任何想法?

1 个答案:

答案 0 :(得分:1)

尝试使用此:

$result_publisher_Path_2[0] = "http://aaa.com";