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.
xmldom を使用して以下の出力を実現したい
<ENVELOPE> <LEDGER NAME="Shah" Action="CREATE"> </LEDGER> </ENVELOPE>
このために、xmldomを使用して2行目を書くにはどうすればよいですか?
属性を設定する必要があります..
$ledger = $xml->createElement("LEDGER"); $ledger->setAttribute("NAME", "$resul"); $ledger->setAttribute("Action", "CREATE");