要獲取body標籤中的內容,我使用下面的代碼。如何在沒有javascript代碼的情況下獲得正文內容
$html = @file_get_contents($url);
$doc = new DOMDocument();
@$doc->loadHTML($html);
$nodes = $doc->getElementsByTagName('body');
$body = $nodes->item(0)->nodeValue;
如何從$ body中刪除js代碼?任何JS代碼,看起來像
<script> /*Some js code*/ </script>
已經問: http://stackoverflow.com/questions/7130867/remove-script-tag-from-html-content – nullexception