Dies kann mit xpath erfolgen. Hier ist ein Beispiel mit Simplexml :
Sie können zuerst alle ersten Blätter finden:
foreach ($xml->xpath('//*[not(*) and not(preceding-sibling::*)]') as $firstLeaf) {
...
}
und dann konkatierst du den Text mit allen folgenden Blättern:
$followingWithSameName = 'following-sibling::*[name(.) = name(preceding-sibling::*[last()])]';
// change the text of the first leaf
$firstLeaf[0] = implode(', ', $firstLeaf->xpath(".|$followingWithSameName"));
und dann entfernen Sie alle folgenden Blätter:
// remove all following leafs with the same name
foreach ($firstLeaf->xpath($followingWithSameName) as $leaf) {
unset($leaf[0]);
}