PHP助力公众号文章采集,数据抓取如丝般顺滑
<?php
// 假设我们已经有了一个公众号文章的URL
$url = 'http://mp.weixin.qq.com/s/XXXXX';
// 使用curl获取网页内容
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$output = curl_exec($ch);
curl_close($ch);
// 使用正则表达式提取文章标题和内容
preg_match('/<h1 class="title">(.*)<\/h1>/', $output, $title);
preg_match('/<div class="rich_media_content " id="js_content"><!
<div class="katex-block">\[CDATA\[(.*)\]</div>
\]>/s', $output, $content);
// 输出结果
$title = mb_convert_encoding(strip_tags($title[1]), 'UTF-8', 'UTF-8');
$content = mb_convert_encoding(strip_tags($content[1]), 'UTF-8', 'UTF-8');
echo "标题:", $title, "\n";
echo "内容:", $content, "\n";
// 注意:以上代码仅为示例,实际使用时需要处理更多的细节,如错误处理、编码转换等。
?>
这段代码使用了cURL来获取网页内容,然后使用正则表达式来提取公众号文章的标题和内容。需要注意的是,由于公众号文章的HTML结构可能会改变,所以正则表达式可能需要根据实际情况进行调整。
评论已关闭