1. ホーム
  2. php

[解決済み] SimpleXmlから文字列への変換

2023-05-16 07:18:12

質問

PHPの文字列を作成する関数はありますか? SimpleXMLElement ?

どのように解決するのですか?

あなたは SimpleXMLElement::asXML() メソッドで実現できます。

$string = "<element><child>Hello World</child></element>";
$xml = new SimpleXMLElement($string);

// The entire XML tree as a string:
// "<element><child>Hello World</child></element>"
$xml->asXML();

// Just the child node as a string:
// "<child>Hello World</child>"
$xml->child->asXML();