2

StackOverflow コミュニティの助けを借りて、複雑な XML ソースを jsTree で使用できるように変更したおかげで、ある程度の成功を収めました。ただし、使用可能なデータが得られたので、XML を手動で編集して次の操作を行う場合にのみ使用できます。

  1. すべての<user>タグの名前を<item>
  2. <user>最初のタグの前にいくつかの要素を削除します
  3. 'encoding=UTF-8'を XML オープナーに挿入します
  4. 最後に<response>(開始 XML タグ) を次のように変更します。<root>

XML ファイルの例: SampleXML

こことグーグルで非常に多くのページを読んで読みましたが、上記の項目を達成する方法が見つかりません。

ポイント(2) SimpleXMLで読み込んで使用UNSETすることで、不要な部分を削除できることがわかりましたが、残りはまだ困っています。

おそらく、SimpleXML (私がよりよく知っている) を使用してソースを変更し、以前に提供されたヘルプを使用してコードを変更し続けることができると考えました。

<?php
$s = file_get_contents('http://www.fluffyduck.com.au/sampleXML.xml');
$doc1 = simplexml_load_string($s);

unset($doc1->row);
unset($doc1->display);

#$moo = $doc1->user;
echo '<textarea>';
echo $doc1->asXML();
echo '</textarea>';

$doc = new DOMDocument();
$doc->loadXML($doc1);

$users = $doc->getElementsByTagName("user");
foreach ($users as $user)
{
    if ($user->hasAttributes())
    {
        // create content node
        $content = $user->appendChild($doc->createElement("content"));
        // transform attributes into content elements
        for ($i = 0; $i < $user->attributes->length; $i++)
        {
            $attr = $user->attributes->item($i);
            if (strtolower($attr->name) != "id")
            {
                if ($user->removeAttribute($attr->name))
                {
                        if($attr->name == "username") {
                                $content->appendChild($doc->createElement('name', $attr->value));
                        } else {
                            $content->appendChild($doc->createElement($attr->name, $attr->value));
                        }
                    $i--;
                }
            }
        }
    }
}
$doc->saveXML();

header("Content-Type: text/xml");
echo $doc->saveXML();

?>
4

1 に答える 1

2

再帰を使用すると、入力に基づいてまったく新しいドキュメントを作成し、すべてのポイントを一度に解決できます。

コード

<?php

$input = file_get_contents('http://www.fluffyduck.com.au/sampleXML.xml');
$inputDoc = new DOMDocument();
$inputDoc->loadXML($input);

$outputDoc = new DOMDocument("1.0", "utf-8");
$outputDoc->appendChild($outputDoc->createElement("root"));

function ConvertUserToItem($outputDoc, $inputNode, $outputNode)
{
    if ($inputNode->hasChildNodes())
    {
        foreach ($inputNode->childNodes as $inputChild)
        {
            if (strtolower($inputChild->nodeName) == "user")
            {
                $outputChild = $outputDoc->createElement("item");
                $outputNode->appendChild($outputChild);
                // read input attributes and convert them to nodes
                if ($inputChild->hasAttributes())
                {
                    $outputContent = $outputDoc->createElement("content");
                    foreach ($inputChild->attributes as $attribute)
                    {
                        if (strtolower($attribute->name) != "id")
                        {
                            $outputContent->appendChild($outputDoc->createElement($attribute->name, $attribute->value));
                        }
                        else
                        {
                            $outputChild->setAttribute($attribute->name, $attribute->value);
                        }
                    }               
                    $outputChild->appendChild($outputContent);
                }
                // recursive call
                ConvertUserToItem($outputDoc, $inputChild, $outputChild);
            }
        }
    }
}

ConvertUserToItem($outputDoc, $inputDoc->documentElement, $outputDoc->documentElement);

header("Content-Type: text/xml; charset=" . $outputDoc->encoding);
echo $outputDoc->saveXML();
?>

出力

<?xml version="1.0" encoding="utf-8"?>
<root>
    <item id="41">
        <content>
            <username>bsmain</username>
            <firstname>Boss</firstname>
            <lastname>MyTest</lastname>
            <fullname>Test Name</fullname>
            <email>lalal@test.com</email>
            <logins>1964</logins>
            <lastseen>11/09/2012</lastseen>
        </content>
        <item id="61">
            <content>
                <username>underling</username>
                <firstname>Under</firstname>
                <lastname>MyTest</lastname>
                <fullname>Test Name</fullname>
                <email>lalal@test.com</email>
                <logins>4</logins>
                <lastseen>08/09/2009</lastseen>
            </content>
        </item>
...
于 2012-09-20T08:18:19.493 に答える