php の XML 読み取りに関する問題
質問、oid、コンテンツを出力したい XML ファイルがあり、出力形式は次のとおりです。
質問: 542
オプション: A 内容: 1111111
オプション: B コンテンツ: 2222222
質問: 123
オプション: C コンテンツ: 3333333
オプション: D 内容: 4444444
何をすべきでしょうか?
<?xml version="1.0" encoding="utf-8"?><br /> <parent><br /> <title>3</title><br /> <author>admin</author><br /> <contentall><br /> <subject><br /> <question>542</question><br /> <option><br /> <oid>A</oid><br /> <content>1111111</content><br /> </option><br /> <option><br /> <oid>B</oid><br /> <content>2222222</content><br /> </option><br /> </subject><br /> <subject><br /> <question>123</question><br /> <option><br /> <oid>C</oid><br /> <content>3333333</content><br /> </option><br /> <option><br /> <oid>D</oid><br /> <content>4444444</content><br /> </option><br /> </subject><br /> </contentall><br /> </parent><br />
3
<著者>管理者著者>
<コンテンツオール>
<件名>
<質問>542質問>
<オプション>
オプション>
<オプション>
オプション>
件名>
<件名>
<質問>123質問>
オプション>
<オプション>
オプション>
件名>
XML;
$xml = simplexml_load_string($s);