Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XSL を記述して外部ドキュメントを変更し、その構造が次のように変更されるようにするにはどうすればよいですか。
<Item id="1"> </Item>
に:
<Item> <Id>1</Id> </Item>
それともPHPでできますか?Drupal で Migrate というモジュールを使用していますが、これが原因で XML をノードに変換できません。
<xsl:template match="Item"> <Item> <Id><xsl:value-of select="@id" /></Id> </Item> </xsl:template>