0

我正在尝试创建一棵 xml 树。像这种类型的东西: -

<products>
  <product_id value='1' />
</products>

我尝试将它们保存到一个 txt 文件中:- 比如1.txt

<products>
   <product_id value='1' />
</products>


2.txt

<products>
  <product_id value='2' />
</products>

我试过这个: -

<?php
// create doctype
$dom = new DOMDocument("1.0");
// display document in browser as plain text 
// for readability purposes
header("Content-Type: text/plain");
// create root element
$root = $dom->createElement("products");
$dom->appendChild($root);
for($i=0;$i<2;$i++)
{
//create product_id
$pro_id = $dom->createElement("product_id");
$root -> appendChild($pro_id);
//append attribute ib product_id
$attpro = $dom->createAttribute("value");
$pro_id -> appendChild($attpro);
//append attribue value in product_id
$attval = $dom->createTextNode($i+1);
$attpro -> appendChild($attval);
$a = $i+1;
file_put_contents("$a.txt",$dom->saveXML());
}
echo $dom->saveXML();
?>

它返回给我的输出如下:- 在1.txt

 <products>
      <product_id value='1' />
    </products>


2.txt

<products>
      <product_id value='1' />
    </products>
 <products>
      <product_id value='2' />
    </products>


我想更改以获取 diff 文件中的所有 product_id ......
谢谢......

4

1 回答 1

3

此代码将根据您的要求工作

<?php

for($i=0;$i<2;$i++)
{
   $dom = new DOMDocument("1.0");

   header("Content-Type: text/plain");
   $root = $dom->createElement("products");
   $dom->appendChild($root);
   $pro_id = $dom->createElement("product_id");
   $root -> appendChild($pro_id);
   $attpro = $dom->createAttribute("value");
   $pro_id -> appendChild($attpro);
   $attval = $dom->createTextNode($i+1);
   $attpro -> appendChild($attval);
   $a = $i+1;
   file_put_contents("`enter code here`$a.txt",$dom->saveXML());
 }
?>
于 2013-05-27T07:18:12.550 回答