xml:
<root>
<a auto='1'>
<b>
<c auto="1">
<d auto="1"></d>
</c>
</b>
<e auto="1">
<f>
<g auto="1"></g>
</f>
</e>
</a>
</root>
The job is:
find all elements that:
1, Is descendant of context element
2, Have 'auto' attribute
3, Highest level (have no ancestor with auto attribute between self and the context element)
So, if the context node is a, c and e should be returned.
I'v implement it in my php class:
$tempId='XDFAY69LA';
$this->setAttribute('tempId',$tempId);
$path=".//*[@auto and not(ancestor::*[@auto and ancestor::*[@tempId='$tempId']])]";
$ar=$this->getElementsByXPath($path);
$this->removeAttribute('tempId');
But I found the query is slowly, maybe .. , because the query is too complex?, And is there a way that do a better job?
I'v write a testing, plz have a look:
<?php
$xml='
<root>
<a auto="1" tempId="current">
<b>
<c auto="1">
<d auto="1"></d>
</c>
</b>
<e auto="1">
<f>
<g auto="1"></g>
</f>
</e>
</a>
</root> ';
$doc=new DomDocument();
$tempId='XDFAY69LA';
$doc->loadXml($xml);
$domxpath=new DOMXPath($doc);
$a=$domxpath->query('a')->item(0);
$path=".//*[@auto and not(ancestor::*[@auto and ancestor::*[@tempId='$tempId']])]";
$start=microtime(true);
for($n=0;$n<1000;$n++){ //run 1000 times
$a->setAttribute('tempId',$tempId);
$ar=$domxpath->query($path,$a);
$a->removeAttribute('tempId');
for($i=0;$i<$ar->length;$i++){
$node=$ar->item($i);
//echo $node->tagName . "\n";
}
}
$cost=round(1000 * (microtime(true)-$start));
echo "time cost: $cost";
?>