所以我使用 simple_html_dom:
http://simplehtmldom.sourceforge.net/
我有这个代码:
$j = '
<itemBody>
<div>films - to watch (Simple Present)<br/>
<textEntryInteraction responseIdentifier="RESPONSE_1"/>
</div>
</itemBody>';
$dom = new simple_html_dom;
$dom->load($j, TRUE);
echo $dom->innertext;
这会返回:
<itembody>
<div>films - to watch (Simple Present)<br/>
<textentryinteraction responseidentifier="RESPONSE_1"/>
</div>
</itembody>
为什么它没有去掉 itembody 标签?(它只是变成了一个小写字母。)