我想(例如)从网页上获取第一篇文章。我应该怎么做? 我尝试使用file_get_contents(),但之后我无法做任何事情。
答案 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>';