nasıl PHP5 ve DOM ile bir HTML sayfası ayrıştırmak için?

0 Cevap php

Possible Duplicate:
How to parse and process HTML with PHP?

Ben verilen bir html-belgenin çok özel bir html etiketinin içeriğini almalısınız bazı kod parçası üzerinde çalışıyorum.

$html = "<html>..........truncated.........<div>blablabla<br />xy</div>.....";
$dom = new DomDocument();
$dom->loadHTML($html);

$divs = $dom->getElementsByTagName('div');

echo $divs->item(0)->nodeValue.'<br>';

the html-code is just an example but shows the very problem i'm experiencing: i want to get the content of this DIV and i NEED the inner tags to be kept! what nodeValue (as well as "textContent") does, is returning the contents of the correct node with all inner tags stripped (http://docs.php.net/manual/en/class.domnode.php)

Ben bu doğru atm nasıl fikir bitti ... ben ne gerekir böylece JavaScripts "innerHTML" veya eşdeğer ... ama böyle bir yöntem bulamıyorum: (

nasıl ben bu hakkı alabilirim?

0 Cevap