求php 新闻自动采集源码

A豪. 2015-10-26 03:38:40
求php 新闻自动采集源码
...全文
1686 2 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
CCC65A8780D2C 2016-12-06
  • 打赏
  • 举报
回复
<?php header("content-Type: text/html; charset=utf-8"); function preg_substr($start, $end, $str) // 正则截取函数 { $temp = preg_split($start, $str); $content = preg_split($end, $temp[1]); return $content[0]; } function str_substr($start, $end, $str) // 字符串截取函数 { $temp = explode($start, $str, 2); $content = explode($end, $temp[1], 2); return $content[0]; } // ---------------- 使用实例 ---------------- $str = iconv("GB2312","UTF-8", file_get_contents("http://www.037c.com/New/5.html")); echo ('标题: ' . str_substr("<title>", "</title>", $str)); // 通过字符串提取标题 echo ('作者: ' . preg_substr("/作者:/", "/<\//", $str)); // 通过正则提取作者 echo ('内容: ' . str_substr('<div class="wltg">', '</div>', $str)); //内容当然不可以少 ?>

20,398

社区成员

发帖
与我相关
我的任务
社区描述
“超文本预处理器”,是在服务器端执行的脚本语言,尤其适用于Web开发并可嵌入HTML中。PHP语法利用了C、Java和Perl,该语言的主要目标是允许web开发人员快速编写动态网页。
phpphpstorm 技术论坛(原bbs)
社区管理员
  • 开源资源社区
  • phpstory
  • xuzuning
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧