首页 > 资讯列表 > 编程/数据库 >> PHP

php 实现的获取关键字 去超链接函数

PHP 2014-12-09 17:33:05 转载来源: 网络整理/侵权必删

本文是一个php 实现的获取关键字 去超链接函数,感兴趣的同学参考下 1.根据权重获取关键字 function getkey($contents){ $rows = strip_tags($contents); $arr = array(' ',' ',"s", "rn", "n", "r", "t", ">", "“", "”"); $qc_rows = str_replace($arr, '', $rows); if(strlen($qc_rows)>2400){ $qc_rows = substr($qc_rows, '0', '2400'); } $data = @implode('', file("http://keyword

本文是一个php 实现获取关键字 去超链接函数,感兴趣的同学参考下
1.根据权重获取关键字


function getkey($contents){
$rows = strip_tags($contents);
$arr = array(' ',' ',"s", "rn", "n", "r", "t", ">", "“", "”");
$qc_rows = str_replace($arr, '', $rows);
if(strlen($qc_rows)>2400){
$qc_rows = substr($qc_rows, '0', '2400');
}
$data = @implode('', file("http://keyword.discuz.com/related_kw.html?title=$contents&ics=gbk&ocs=gbk"));
preg_match_all("/<kw>(.*)A[(.*)]](.*)></kw>/",$data, $out, PREG_SET_ORDER);
for($i=0;$i<5;$i++){
$key=$key.$out[$i][2];
if($out[$i][2])$key=$key.",";
}
return $key;
}
//$contents为你要得到关键字的文章

 


2.去掉文章中的超链接简单,简洁

 


function get_new_content($content){
include("../simple_html_dom.php");
$html = str_get_html($content);
$a_href = $html->find('a');
foreach($a_href as $link){
$text = $link->plaintext;//链接中的文字;
$link->outertext = $text;
}
$now_content = $html->save();
}
//preg_replace("/<a .*?>(.*?)</a>/i","${1}", $content); 这样用正则也可以

 

 


标签: php 实现 获取 关键字 去超 链接 函数


声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!

站长搜索

http://www.adminso.com

Copyright @ 2007~2024 All Rights Reserved.

Powered By 站长搜索

打开手机扫描上面的二维码打开手机版


使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

站长搜索目录系统技术支持