0
我用simplehtmldom.sourceforge.net如何徹底清潔元素?
我需要明確的元素$e
<font size="2"><b>Listen to INT_routine on the January 15th, 2007 Urban-D Radio Podcast!</b></font>
我使用的功能:$e->clear()
元素刪除,但保留</font>
如何完全乾淨的元素?
我用simplehtmldom.sourceforge.net如何徹底清潔元素?
我需要明確的元素$e
<font size="2"><b>Listen to INT_routine on the January 15th, 2007 Urban-D Radio Podcast!</b></font>
我使用的功能:$e->clear()
元素刪除,但保留</font>
如何完全乾淨的元素?
Iv'e從未使用這個庫,但通過它看。看看這是否有訣竅..
echo str_get_html('<font size="2"><b>Listen to INT_routine on the January 15th, 2007 Urban-D Radio Podcast!</b></font>')->plaintext;
或這個。 。
$tagtext = (string)"<font size="2"><b>Listen to INT_routine on the January 15th, 2007 Urban-D Radio Podcast!</b></font>";
var_dump(str_get_html($tagtext)->plaintext);
編輯:
// Example
$html = str_get_html("<div>foo <b>bar</b></div>");
$e = $html->find("div", 0);
echo $e->tag; // Returns: " div"
echo $e->outertext; // Returns: " <div>foo <b>bar</b></div>"
echo $e->innertext; // Returns: " foo <b>bar</b>"
echo $e->plaintext; // Returns: " foo bar"
結束了嗎?這讓我明文。但對我來說,它應該被刪除,標記和一切。 – Mediator
scushi paruski。 。你需要一個新的世界。 – Chamilyan
明文 - prosto vernet mne tekst,mne nuzhno udalit' ves' tag – Mediator