Ben bir xml dosyası içinde veri ile bir veri "fasulye" doldurmak için nasıl iyi bir strateji ile ilgili bir sorum var.
Fasulye gibi görünebilir:
class Person
{
var $id;
var $forename = "";
var $surname = "";
var $bio = new Biography();
}
class Biography
{
var $url = "";
var $id;
}
bilgi içeren xml altağaç bu gibi görünebilir:
<root>
<!-- some more parent elements before node(s) of interest -->
<person>
<name pre="forename">
Foo
</name>
<name pre="surname">
Bar
</name>
<id>
1254
</id>
<biography>
<url>
http://www.someurl.com
</url>
<id>
5488
</id>
</biography>
</person>
</root>
At the moment, I have one approach using DOMDocument. A method iterates over the entries and fills the bean by "remembering" the last node. I think thats not a good approach.
What I have in mind is something like preconstructing some xpath expression(s) and then iterate over the subtrees/nodeLists. Return an array containing the beans as defined above eventually.
However, it seems not to be possible reusing a subtree /DOMNode as DOMXPath constructor parameter.
Size kimse böyle bir sorunla karşılaştı?