我使用下面的代碼獲取當PHP頁面被稱爲XML文件:獲得編碼=「UTF-8」獨立=「是」使用PHP asXML和的SimpleXMLElement
即當你進入http://example.com/strtoxmp.php
,它會回到你XML,基於以下編碼:
$xml = new SimpleXMLElement("<feed/>");
$feed = $xml;
$feed->addChild('resultLength', "1");
$feed->addChild('endIndex', "1");
$item = $feed->addChild('item',"");
$item->addChild('contentId', "10031");
$item->addChild('contentType', "Talk");
$item->addChild('synopsis', "$newTitle");
$item->addChild('runtime', ' ');
}
Header('Content-type: text/xml; charset:UTF-8; ');
print($xml->asXML());
,它是工作的罰款。它產生以下XML:
<?xml version="1.0"?>
<feed>
<resultLength>1</resultLength>
<endIndex>1</endIndex>
<contentId>10031</contentId>
<contentType>Talk</contentType>
<synopsis>Mark Harris - Find Your Wings</synopsis>
<runtime> </runtime>
</item>
</feed>
但我需要
< XML版本= 「1.0」 編碼= 「UTF-8」 獨立= 「是」>
代替?的
<?XML版本= 「1.0」?>
誰說你需要的是什麼?兩者應該是等同的。 – hakre 2013-05-05 16:27:44
ROKU在<?xml version =「1.0」?>下無法正常工作,但它可以很好地與<?xml version =「1.0」encoding =「UTF-8」standalone =「yes」?> – SJSSoft 2013-05-05 17:32:17
什麼是ROKU?流媒體播放器? – hakre 2013-05-05 17:33:36