Ben PHP DOM ile bazı HTML ayrıştırmak çalışıyorum, ama bazı sorunlar yaşıyorum. İlk olarak, bu çözüm değiştirmek durumunda, ben HTML, bir tam sayfa değil, daha ziyade, bunun sadece bir parçası.
<!-- This is the HTML that I have --><a href='/games/'>
<div id='game'>
<img src='http://images.example.com/games.gif' width='300' height='137' border='0'>
<br><b> Game </b>
</div>
<div id='double'>
<img src='http://images.example.com/double.gif' width='300' height='27' border='0' alt='' title=''>
</div>
</a>
Şimdi kimliği ile sadece div almaya çalışıyorum double
. Ben aşağıdaki kodu denedim, ama düzgün çalışıyor gibi görünmüyor. Ne yanlış yapıyor olabilir?
//The HTML has been loaded into the variable $html
$dom=new domDocument;
$dom->loadHTML($html);
$dom->preserveWhiteSpace = false;
$keepme = $dom->getElementById('double');
$contents = '<div style="text-align:center">'.$keepme.'</a></div>';
echo $contents;