使用 PHP 从特定的 div id 获取数据

2022-01-20 00:00:00 fetch php html

可能重复:
从php读取XML标签id

使用 PHP 从特定的 div id 获取数据的方法是什么.我想要做的是从一个名为 <div id="content"> 的 div id 中获取数据,因此该 div id 中的所有数据都将在一个变量中获取.
我可以使用我的脚本获取所有内容,但无法对其进行过滤以从特定 div 标签中获取数据.
这是我用来获取任何内容的脚本:

what is the way to fetch data from A Specific div id Using PHP. What i want to do is to fetch data from a div id called <div id="content"> , so all the data from that div id will be fetched in a variable.
I can fetch all content with my script but cant filter it to fetch data from a Specific div tag.
Here is the script i am using to fetch any content:

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";


有什么想法吗?


any idea?

推荐答案

试试这个,但要确保你已经下载并包含 PHP 简单 HTML DOM 解析器

Try this but make sure you have downloaded and included PHP Simple HTML DOM Parser

$html = file_get_html("http://www.example.com");
$displaybody = $html->find('div[id=content]', 0)->plaintext;

它们是一些从 div id 或 Tag id 中排除内容的方法,例如,

Their are some ways to exclude content from div id or Tag id like,

1) 使用正则表达式

2) 使用 SimpleXML

3) 使用 DOM 扩展 或 XPath

相关文章