我很困惑。我如何訪問CDATA中的標籤?使用PHP在XML中訪問標籤中的標籤
XML代碼:
<body>
<block>
<![CDATA[
<font color="#FFCC53" size="+6"><b>Latest News Updates</b></font>
<font color="#AAAAAA">HTML Formatted Text Fields</font>
]]>
</block>
</body>
PHP代碼:
<?php
$xml = simplexml_load_file("main.xml");
print ( $xml->smallTextList[0]->item[0]->textBody[0]->font[0]) ;
?>
我使用的這個,但我得到了一個空白頁面....
可能的解決方案? http://stackoverflow.com/questions/1246732/parsing-xml-cdata-with-php – blottedscience