 
  
  include_once("simple_html_dom.php");
$html2 = str_get_html($text);
$html2->find("div[id=contentSub]", 0)->outertext = "";
$text = $html2->outertext; 
  
  include_once('simple_html_dom.php');
$html2 = str_get_html($text);
foreach($html2->find('div[id=contentSub]') as $item) {
    $item->outertext = '';
}
$text = $html2->outertext;