也许删除
标签帮助:
$str = <<<str
144.000 TL
Emlak Endeksi
str;
$html = str_get_html($str);
// Find first
$h3 = $html->find(‘h3’, 0);
// Find first inside the
, or use $h3->find(‘a’) to find all of them
$a = $h3->find(‘a’, 0);
// Remove tag
$a->outertext = ‘’;
// Output: “144.000 TL”
print trim($h3->innertext);
</code>