如何通过PHP获取页面内容的一部分?

时间:2014-08-31 14:25:34

标签: php file-get-contents

我想(例如)从网页上获取第一篇文章。我应该怎么做? 我尝试使用file_get_contents(),但之后我无法做任何事情。

1 个答案:

答案 0 :(得分:0)

使用DOM解析器http://simplehtmldom.sourceforge.net/manual.htm

$html = file_get_html('http://www.google.com/');

// headings
 foreach($html->find('h1') as $element) 
     echo $element->src . '<br>';

// Find all links 
foreach($html->find('a') as $element) 
     echo $element->href . '<br>';