Fetching Data From A Specific div id Using PHP(使用 PHP 从特定的 div id 获取数据)
问题描述
可能重复:
从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
这篇关于使用 PHP 从特定的 div id 获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 PHP 从特定的 div id 获取数据
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01