织梦文档关键词维护中设置词语重叠后出错的修改方法
来源:本站原创
|时间:2021-08-05
|栏目:
dedecms|点击: 次
使用织梦系统的文档关键词维护,假如增加两个关键词为“织梦”和“织梦先生”,那么在文章中出现“织梦先生”这个词的时候,锚文本HTML就会出错,我想这是很多用过这个功能的SEOer见到过的。
在很早以前我就发现过,但是因为自己已经很长时间没有使用织梦系统了,只是这次帮助客户修改时,有这个需求,就在这里做一下记录。
需要修改两个函数,都在同一个文件中(include/arc.archives.class.php),一个是类Archives中的ReplaceKeyword()函数,另一个是文件最末尾的_highlight()函数。
修改源码中把织梦原版代码注释掉了,以便比较源码和理解修改思路,源码如下:
02 |
* 高亮问题修正, 排除alt title <a></a>直接的字符替换 |
08 |
function ReplaceKeyword($kw,&$body) |
12 |
$kws = explode( "," ,trim($kw)); //以分好为间隔符 |
14 |
$karr = $kaarr = $GLOBALS[ 'replaced' ] = array(); |
17 |
$body = preg_replace( "#(<a(.*))(>)(.*)(<)(/a>)#isU" , '\1-]-\4-[-\6' , $body); |
19 |
// $query = "SELECT * FROM keywords WHERE rpurl<>'' ORDER BY rank DESC" ; // 原版的 |
20 |
$query= "SELECT * FROM `keywords` WHERE rpurl<>'' and sta=1 ORDER BY length(keyword) DESC" ; // 修改 优先处理长关键词 |
21 |
$this->dsql->SetQuery($query); |
22 |
$this->dsql->Execute(); |
23 |
while ($row = $this->dsql->GetArray()) |
25 |
$key = trim($row[ 'keyword' ]); |
26 |
$key_url=trim($row[ 'rpurl' ]); |
28 |
$kaarr[] = "<a class='title-prefix' href='$key_url' target='_blank'>$key</a>" ; // 删除 <u> 和 </u> ,增加class属性 |
32 |
// $body = @preg_replace( "#(^|>)([^<]+)(?=<|$)#sUe" , "_highlight('\2', $karr, $kaarr, '\1')" , $body); |
34 |
foreach ($karr as $key => $word) |
36 |
$body = preg_replace( "/(^|>)([^<]+)(?=<|$)/sUe" , "_highlight('\2', $karr[$key], $kaarr[$key], '\1')" , $body); |
39 |
$body = preg_replace( "/(<a(.*))-]-(.*)-[-(/a>)/isU" , '\1>\3<\4' , $body); |
41 |
$body = preg_replace( "/(<a(.*))(>)(.*)(<)(/a>)/isU" , '\1-]-\4-[-\6' , $body); |
45 |
$body = preg_replace( "#(<a(.*))-]-(.*)-[-(/a>)#isU" , '\1>\3<\4' , $body); |
|
01 |
//高亮专用, 替换多次是可能不能达到最多次 |
02 |
function _highlight($string, $words, $result, $pre) |
04 |
global $cfg_replace_num; |
05 |
$string = str_replace( '"' , '"' , $string); |
06 |
if ($GLOBALS[ 'replaced' ][$words] == 1){ |
09 |
if ($cfg_replace_num > 0) |
11 |
// foreach ($words as $key => $word) |
13 |
// if ($GLOBALS[ 'replaced' ][$word] == 1) |
17 |
//$string = preg_replace( "#" .preg_quote($key). "#" , $result[$key], $string, $cfg_replace_num); |
18 |
$string = preg_replace( "#" .preg_quote($words). "#" , $result, $string, $cfg_replace_num); // 修改后 |
19 |
if (strpos($string, $words) !== FALSE) |
21 |
$GLOBALS[ 'replaced' ][$words] = 1; |
27 |
$string = str_replace($words, $result, $string); |
|