Điều này có thể được thực hiện với xpath. Đây là một ví dụ với Simplexml :
Trước tiên, bạn có thể tìm thấy tất cả các lá đầu tiên:
foreach ($xml->xpath('//*[not(*) and not(preceding-sibling::*)]') as $firstLeaf) {
...
}
và sau đó bạn nối văn bản với tất cả các lá sau:
$followingWithSameName = 'following-sibling::*[name(.) = name(preceding-sibling::*[last()])]';
// change the text of the first leaf
$firstLeaf[0] = implode(', ', $firstLeaf->xpath(".|$followingWithSameName"));
và sau đó bạn loại bỏ tất cả các lá sau:
// remove all following leafs with the same name
foreach ($firstLeaf->xpath($followingWithSameName) as $leaf) {
unset($leaf[0]);
}