0
所以我用simple_html_dom:Simplehtmldom的innerText不工作
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標籤? (它只是變成了一個小寫)。