如何在PHP中获取DIV的HTML内容

时间:2013-02-03 16:53:58

标签: php html parsing preg-match simple-html-dom

我需要从URL获取DIV的HTML内容。我已经尝试用preg_match()和simple_html_dom来获取div的内容,但我只得到纯文本。

simple_html_dom示例:

$html = file_get_html('http://webpage.tld');
$code = $html->find('#mydiv', 0);
var_dump($code->plaintext);

1 个答案:

答案 0 :(得分:4)

而不是$code->plaintext使用$code->outertext