如何使用 querylist 从 html p 标签中提取数据
想要从 html 文档中提取 p 标签内的数据,可以使用专业的框架 querylist。
use QLQueryList; $html = '<p>第四章 医学微生物学(助理不考)</p><p>第一节 微生物的基本概念</p><p><span>立即学习</span>“<a href="https://pan.quark.cn/s/cb6835dc7db1" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">前端免费学习笔记(深入)</a>”;</p>'; $ql = QueryList::html($html); $data = $ql->find('p')->texts()->toArray(); // 결과 데이터 print_r($data);
- querylist::html():解析 html 文档
- find():查找 p 标签
- texts():提取 p 标签内的文本
- toarray():将结果转换为数组
最终得到的 $data 数组包含了两个文本字符串,分别为 “第四章 医学微生物学(助理不考)” 和 “第一节 微生物的基本概念”。