Można to zrobić za pomocą xpath. Oto przykład z Simpleksml :
Możesz najpierw znaleźć wszystkie pierwsze liście:
foreach ($xml->xpath('//*[not(*) and not(preceding-sibling::*)]') as $firstLeaf) {
...
}
a następnie łączysz tekst ze wszystkimi następującymi listkami:
$followingWithSameName = 'following-sibling::*[name(.) = name(preceding-sibling::*[last()])]';
// change the text of the first leaf
$firstLeaf[0] = implode(', ', $firstLeaf->xpath(".|$followingWithSameName"));
a następnie usuwasz wszystkie następujące liście:
// remove all following leafs with the same name
foreach ($firstLeaf->xpath($followingWithSameName) as $leaf) {
unset($leaf[0]);
}