当前位置:Gxlcms > PHP教程 > php采集器_PHP教程

php采集器_PHP教程

时间:2021-07-01 10:21:17 帮助过:11人阅读

本款文章是一款用php实现的文章采集功能哦,只是一个简单的功能不过源码也就很少了,适合于小型的采集功能哦。

本款文章是一款用php实现的文章采集功能哦,只是一个简单的功能不过源码也就很少了,适合于小型的采集功能哦。


set_time_limit(0);
?>



无标题文档


$filecontent = getcontent('http://111cn.cn');
$start = 's;
$end ='b;
$art = 311;
$str = '';


preg_match('/(.+?)/', $filecontent, $arr);/* 取得标题*/
$init =explode($start,$filecontent);
$array = explode($end,$init[1]);
$str =$str.$arr[1].replaceHtml($array[0]);

function getcontent($url)
{
$retmsg=file_get_contents($url);
return $retmsg;
}

function savato($filename,$content){
if( !empty( $content ) ){
$info = fopen($filename,'w+');
fwrite($info,$content);
fclose($info);
echo "保存文件 $filename 成功
";
}else{
echo '文章更新失败,点击重新更新';
}
}

function replaceHtml($str){
$temp = str_replace(' ',' ',$str);
$temp = str_replace('
',chr(10),$temp);
$ return strip_tags($temp);
}


?>


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445046.htmlTechArticle本款文章是一款用php实现的文章采集功能哦,只是一个简单的功能不过源码也就很少了,适合于小型的采集功能哦。 本款文章是一款用php实...

人气教程排行