我需要获取以下XML内容的HTML内容answer:
<qa>
<question>Who are you?</question>
<answer>Who who, <strong>who who</strong>, <em>me</em></answer>
</qa>
因此,我想获取字符串“谁,<strong>谁</ strong>,<em>我</ em>”。
如果我使用answeras SimpleXMLElement,则可以调用asXML()以获取“ <answer>谁,<strong>谁</ strong>,<em>我</ em> </ answer>”,但是如何获取内部XML没有元素本身包裹的元素的元素?
我更喜欢不涉及字符串函数的方法,但是如果那是唯一的方法,那就这样吧。
慕丝7291255