Home  >  Article  >  Backend Development  >  How to calculate title similarity ratio in php, calculate title in php_PHP tutorial

How to calculate title similarity ratio in php, calculate title in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:45:41784browse

How to calculate title similarity ratio in PHP, how to calculate title similarity ratio in PHP

The example in this article describes the method of calculating title similarity ratio in PHP. Share it with everyone for your reference. The details are as follows:

<&#63;php 
/*
 *
 * @param string $title_1 题目1
 * @param string $title_2 题目2
 * @return float $percent 相似百分比
 */
function title_similar($title_1,$title_2) {
  $title_1 = get_real_title($title_1);
  $title_2 = get_real_title($title_2);
  similar_text($title_1, $title_2, $percent);
  return $percent;
}
/**
 * php采集文章题目并去版权
 * @param string $html 需要采集的html源代码
 * @return string
 */
function get_real_title($str){
  $str = str_replace(array('-','—','|'),'_',$str);
  $splits = explode('_', $str);
  $l = 0;
  foreach ($splits as $tp){
    $len = strlen($tp);
    if ($l < $len){$l = $len;$tt = $tp;}
  }
  $tt = trim(htmlspecialchars($tt));
  return $tt;
}
//以下是测试
$title_1 = '代号PHPCMS V9产品正式发布公测版本';
$title_2 = 'PHPCMS再战江湖 V9产品正式发布公测版本';
$percent = title_similar($title_1,$title_2);
echo '相似百分比:'.$percent.'%';
echo "<br />\n";
&#63;>

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1039206.htmlTechArticleHow to calculate the title similarity ratio in php, PHP calculates the title title. This article describes how PHP calculates the title similarity ratio. method. Share it with everyone for your reference. The details are as follows: php /*...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn