0

Web ページのすべての単語 (タグではない) を DOMDocument の配列に入れたいと思います。

$content = '<html><body><h1>Some words</h1>';
$content .= '<p>here is some words <span>there is other words here</span></p>';
$content .= '</body></html>';

$dom = new DOMDocument();
@$dom->loadHTML($content);

$words = array();
// How to do that ?

ありがとう

4

0 に答える 0