sql >> データベース >  >> RDS >> Mysql

テキストを残したままタグ内のタグを削除する方法PHPXMLMYSQL GCIDE

    このコードは、ターゲットタグ()のタグを削除します:

    $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. bashからMySQLクエリを実行しているときに、影響を受ける行数を取得するにはどうすればよいですか?

    2. GROUPBYおよびHAVING結果セットを展開します

    3. MySQLのINSERTまたはREPLACEコマンド

    4. 例のAlwaysOn可用性グループのSQLServerでの透過的データ暗号化(TDE)