我有一个通过php创建的xml文件。基本结构是:
<catgories> *this is root*
<category> *element*
<title>xy</title> *attribute*
<desc>yu</desc> *attribute*
<categoryLeaf> *child element of category*
<title>rt</title> *attribute of categoryLeaf*
</categoryLeaf>
<endtvod></endtvod>
</category>
</categories>
xml是一次创建的,但categoryLeaf及其在单独函数中创建的属性除外。正确创建了xml。为了获得categoryLeaf,我正在解析一个html并提取信息并将该信息存储在一个包含以下内容的数组中:
if (!empty($dom)) { //IF NOT EMPTY FIND CATEGORIES
$clsort = $xpath->query('//div[@class="sort"]');
foreach($clsort as $clsorts){
$li= $clsorts->getElementsByTagName('li');
foreach ($li as $lis){
$links=$lis->getElementsByTagname('a');
foreach ($links as $link){
$href=$link->getAttribute('href');
$text=$link->nodeValue;
if ($text=="#"){
break;
}else{
$textarray=$text;
ECHO $textarray."<br>";
CategoryLeafXml($textarray);
}
}
}
}
}
else
{
echo "EMPTY CONTAINER". "<br>";
}
通过上面的代码获得所需信息并将其添加到文本阵列中。我可以回应它,每个都出现。我将数组传递给一个打开xml的函数,插入categoryLeaf以及title属性并保存至代码:
Function CategoryLeafXml($textarray){
$xml = new DOMDocument('1.0', 'UTF-8');
$xml->formatOutput = true;
$xpath = new DOMXPath($xml);
$xml-> loadXML ('.\\xml\\test.xml');
$arrcount=count($textarray);
echo $arrcount."<br>";
$categoryLeaf=$xml->createElement("categoryLeaf");
for ($i=0; $i<$arrcount;$i++){
echo $textarray."<br>";
$endtvod=$xml->getElementsByTagName('endtvod')->item(0); //LOCATE tag
$category=$xml->getElementsByTagName('category');
$categories=$xml->getElementsByTagName('categories');
$newleaf=$xml->insertBefore($categoryLeaf, $endtvod);
$title = $xml->createAttribute("title");
$title->value= $textarray;
$categoryLeaf->appendChild($title);
$xml->save('.\\xml\\test.xml');
}
}
假设要创建的是xml结构,html将解析为textarray,textarray将传递给元素tvod之前插入元素categoryLeaf的函数。 textarray是categoryLeaf / title的属性值。我有两个问题,(1)打开xml并创建categoryLeaf,但保存时结果为:
<?xml version="1.0" encoding="UTF-8"?>
<categoryLeaf title="value of textarray"/>
将覆盖xml,只留下一个插入的元素,只包含最后一个数组值。 (2)数组计数总是显示1,而for循环只运行一次,只写入数组的最后一个值。我预计会为数组计数的值添加categoryLeaf,但它只将该值视为一。我知道阵列中有大约25个条目。
答案 0 :(得分:1)
您只能通过以下方式创建单个categoryLeaf节点:
$categoryLeaf=$xml->createElement("categoryLeaf")
并更改属性n次。
你必须在for循环中创建categoryLeaf。
我也不明白你为什么要这样做:
$category=$xml->getElementsByTagName('category');
$categories=$xml->getElementsByTagName('categories');
这似乎没有在函数内部做任何事情。
试试这样的事情:
Function CategoryLeafXml($textarray){
$xml = new DOMDocument('1.0', 'UTF-8');
$xml->formatOutput = true;
$xpath = new DOMXPath($xml);
$xml-> loadXML ('.\\xml\\test.xml');
$endtvod = $xml->getElementsbyTagName('endtvod')->item(0)
foreach ($textarray as $text){
$categoryLeaf=$xml->createElement("categoryLeaf");
$categoryLeaf->setAttribute('title', $text);
$endtvod->parentNode->insertBefore($categoryLeaf, $enttvod)
}
$xml->save('.\\xml\\test.xml');
}