Mysql
 sql >> Database >  >> RDS >> Mysql

Come concatenare tag simili in un file XML

Questo può essere fatto con xpath. Ecco un esempio con Simplexml :

Puoi prima trovare tutte le prime foglie:

foreach ($xml->xpath('//*[not(*) and not(preceding-sibling::*)]') as $firstLeaf) {
    ...
}

e poi concate il testo insieme a tutte le seguenti foglie:

    $followingWithSameName = 'following-sibling::*[name(.) = name(preceding-sibling::*[last()])]';
    // change the text of the first leaf
    $firstLeaf[0] = implode(', ', $firstLeaf->xpath(".|$followingWithSameName"));

e poi rimuovi tutte le seguenti foglie:

    // remove all following leafs with the same name
    foreach ($firstLeaf->xpath($followingWithSameName) as $leaf) {
        unset($leaf[0]);
    }

Demo