我有一个函数来读取文本文件并与目录搜索交叉匹配,以使用文件的目录索引来计算描述(文本文件)。我使用了leveltensin函数来提供一些模糊逻辑,所以名称不需要100%相同,但我遇到了障碍,因为我已经设置了现在我正在设置内存墙,因为当我取消注释行时在它下面搜索整个txt文件,并将每个ling与目录文件名进行比较。每次检查700多个文件700次我快速耗尽内存。我需要一些方法来跳出一段时间(!feof($ file_handle))当它找到一个匹配然后找到一些方法来设置下一个传递的起点到我们停止的线位置所以它不是循环0-700每一次
function GenerateList($titleB, $descB, $thumbB, $dirB, $patternB){
$outputB = "<CATEGORY name=\"$titleB\" desc=\"$descB\" thumb=\"$thumbB\">";
$open_error = 0;
if (is_dir($dirB)){
$myDirectory = opendir($dirB);
// get each entry
while($entryName = readdir($myDirectory)) {
$dirArray[] = $entryName;
}
// close directory
closedir($myDirectory);
// count elements in array
$indexCount = count($dirArray);
// sort em
sort($dirArray);
// loop through the array of files and print them all
if (!($text = file_get_contents("Scripts/descriptions.txt"))){$open_error = 1;}
$results = array();
for($index=0; $index < $indexCount; $index++) {
$ext = explode(".", $dirArray[$index]);
$parsed_title = preg_replace ($patternB, "", $ext[0]);
if ((substr("$dirArray[$index]", 0, 1) != ".")&&($ext[1] == "flv")){ // don't list hidden files
//if ($open_error == 0){
// $file_handle = fopen("Scripts/descriptions.txt", "rb");
//while (!feof($file_handle) ) {
//$line_of_text = fgets($file_handle);
//$parts = explode('|', $line_of_text);
/*
echo "<PRE>";
echo strtolower($parts[0]);
echo "</br>";
echo strtolower($parsed_title);
echo "</br>";
echo "</PRE>";
*/
//if ((wordMatch(strtolower($parts[0]), strtolower($parsed_title), 2)) > 0){
$outputB .= "<ITEM>";
$outputB .= "<file_path>/Sources/Power Rangers/$dirB".$dirArray[$index]."</file_path>";
$outputB .= "<file_width>500</file_width>";
$outputB .= "<file_height>375</file_height>";
$outputB .= "<file_title>".$parsed_title."</file_title>";
// $outputB .= "<file_desc>".$parts[1]."</file_desc>";
$outputB .= "<file_desc>test</file_desc>";
// $outputB .= "<file_image>".$match_result[2]."</file_image>";
$outputB .= "<file_image>$thumbB</file_image>";
// $outputB .= "<featured_image>".$match_result[3]."</featured_image>";
$outputB .= "<featured_image>$thumbB</featured_image>";
// $outputB .= "<featured_or_not>".$parts[4]."</featured_or_not>";
$outputB .= "<featured_or_not>true</featured_or_not>";
$outputB .= "</ITEM>";
//};//if ((wordMatch($parts[0], strtolower($word), 2) > 0)
//};//while
//fclose($file_handle);
//};//if ($open_error == 0)
};//if ((substr("$dirArray[$index]", 0, 1) != ".")&&($ext[1] == "flv"))
};//for($index=0; $index < $indexCount; $index++)
};//if (file_exists($dirB))
$outputB .= "</CATEGORY>";
return $outputB;
};//function
function wordMatch($words, $input, $sensitivity){
$shortest = -1;
foreach ($words as $word) {
$lev = levenshtein($input, $word);
if ($lev == 0) {
$closest = $word;
$shortest = 0;
break;
} //if
if ($lev <= $shortest || $shortest < 0) {
$closest = $word;
$shortest = $lev;
} //if
} //foreach
if($shortest <= $sensitivity){
return $closest;
} else {
return 0;
} //if/else
} // function, http://php.net/manual/en/function.levenshtein.php
答案 0 :(得分:1)
您可以计算两个项目之间的edit distance,而不是正则表达式。那么你的80%启发式就等于说(length-edit_distance)/length >= .8
其中length
是你想要匹配的字符串的长度。
因此,如果字符串长度为20个字符,并且与目标的编辑距离为2,则您将计算(20-2) / 20 == .9
换句话说,该项目与目标的匹配率为90%。这比.8高,所以你接受它作为匹配。
请注意,“编辑距离”也称为Levenshtein distance,因此您只需执行以下操作:
$len = (float) strlen($target); // Avoids integer division.
$match = ($len-levenshtein($input, $target))/$len;
if ($match >= 0.8) {
// The $input matches our $target
}