如何抓取“深圳之窗”的新闻
程序员文章站
2022-06-08 08:17:27
...
最近不少网友来问我如何用PHP来抓取其他网站的新闻,开始我担心会侵权,一直没公开。但问的人太多了,这里我举个例子 ---- 如何抓取“深圳之窗”的新闻,仅供大家参考使用思路。请大家自觉,不要做违规的事。谢谢。
抓取“科技新闻”目录代码页(readNews.php):
$url = "http://news.szptt.net.cn/kjxw.phtml";
if(isset($url)&&$url!="") {
$str = implode("",file($url));
$str_ary = explode("
抓取“科技新闻”目录代码页(readNews.php):
$url = "http://news.szptt.net.cn/kjxw.phtml";
if(isset($url)&&$url!="") {
$str = implode("",file($url));
$str_ary = explode("
- ",$str);
- Javascript 基础教程之如何插入JavaScript代码
- CSS语法,如何创建及选择器的使用
- Javascript 基础教程之如何获取html 元素
- php curl 自定义get方法抓取网页
- 如何使用 AppML
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
$str_ary = explode("",$str_ary[1]);
for ($i=0; $iecho $str_ary[$i];
}
}
?>
相关文章
? 如何抓取“深圳之窗”的新闻
最近不少网友来问我如何用PHP来抓取其他网站的新闻,开始我担心会侵权,一直没公开。但问的人太多了,这里我举个例子 ---- 如何抓取“深圳之窗”的新闻,仅供大家参考使用思路。请大家自觉,不要做违规的事。谢谢。
抓取“科技新闻”详细内容代码页(readNewsDetail.php):
/*
* ctohome.com 深圳新闻
*/
$url_ary = explode("/",$url);
$url = $url_ary[count($url_ary)-2] . "/" . $url_ary[count($url_ary)-1];
$url = "http://news.szptt.net.cn/" . $url;
if(isset($url)&&$url!="") {
$str = implode("",file($url));
$str_ary = explode("
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论