可能重复:
从 php 读取 XML 标记 id
使用 PHP 从特定 div id 获取数据的方法是什么。我想要做的是从一个名为 的 div id 中获取数据<div id="content">
,因此该 div id 中的所有数据都将在一个变量中获取。
我可以使用我的脚本获取所有内容,但无法对其进行过滤以从特定 div 标记中获取数据。
这是我用来获取任何内容的脚本:
function file_get_contents_curl($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$html = file_get_contents_curl("http://www.example.com");
//parsing all content:
$doc = new DOMDocument();
@$doc->loadHTML($html);
echo "$html";
任何想法?