sql >> Databáze >  >> RDS >> Mysql

Jak odstranit značky ve značce PHP XML MYSQL GCIDE při ponechání textu

Tento kódový pásek označuje v cílové značce ():

$str = "<entry><def>some def <altname>hey</altname></def></entry>";

$dom = new domDocument();
$dom -> loadXML($str);

// use getElementsByTagName or use DOMXPath($dom) to find your tag which don't contain other tags
$tags = $dom -> getElementsByTagName("def"); 

$contents = "";
for($i = 0; $tags -> length > $i; $i++){
    $contents = $tags -> item($i) -> nodeValue; //content without tags
    $children = $tags -> item($i) -> childNodes;
    remove_children($tags -> item($i)); //recursively remove chiled nodes
    $tags -> item($i) -> appendChild($dom -> createTextNode($contents));
}

//recursively remove chiled nodes
function remove_children(&$node) {
  while ($node->firstChild) {
    while ($node->firstChild->firstChild) {
      remove_children($node->firstChild);
    }
    $node->removeChild($node->firstChild);
  }
}

echo $dom -> saveXML();



  1. Cizí klíče v MySQL?

  2. Zabránění vkládání SQL v Node.js

  3. Zacházení s duplicitními primárními klíči při vložení v SQLAlchemy (deklarativní styl)

  4. Detekce zamčených tabulek (uzamčeno pomocí LOCK TABLE)